Searched defs:KernelHandle (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_handle.h38 // KernelHandle provides a reference counted container for the open
40 // KernelHandle can only be referenced when the KernelProxy lock is held.
41 class KernelHandle : public sdk_util::RefObject { class in namespace:nacl_io
43 KernelHandle();
44 KernelHandle(const ScopedFilesystem& fs, const ScopedNode& node);
45 ~KernelHandle();
91 DISALLOW_COPY_AND_ASSIGN(KernelHandle);
94 typedef sdk_util::ScopedRef<KernelHandle> ScopedKernelHandle;
H A Dkernel_handle.cc20 KernelHandle::KernelHandle() : filesystem_(NULL), node_(NULL) { function in class:nacl_io::KernelHandle
23 KernelHandle::KernelHandle(const ScopedFilesystem& fs, const ScopedNode& node) function in class:nacl_io::KernelHandle
27 KernelHandle::~KernelHandle() {
34 SocketNode* KernelHandle::socket_node() {
40 Error KernelHandle::Init(int open_flags) {
56 Error KernelHandle::Seek(off_t offset, int whence, off_t* out_offset) {
98 Error KernelHandle
[all...]

Completed in 65 milliseconds