HomeSort by relevance Sort by last modified time
    Searched defs:KernelHandle (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_handle.cc 20 KernelHandle::KernelHandle()
23 KernelHandle::KernelHandle(const ScopedMount& mnt, const ScopedMountNode& node)
26 KernelHandle::~KernelHandle() {
32 Error KernelHandle::Init(int open_mode) {
42 Error KernelHandle::Seek(off_t offset, int whence, off_t* out_offset) {
84 Error KernelHandle::Read(void* buf, size_t nbytes, int* cnt) {
92 Error KernelHandle::Write(const void* buf, size_t nbytes, int* cnt)
    [all...]
kernel_handle.h 22 // KernelHandle provides a reference counted container for the open
24 // KernelHandle can only be referenced when the KernelProxy lock is held.
25 class KernelHandle : public sdk_util::RefObject {
27 KernelHandle();
28 KernelHandle(const ScopedMount& mnt, const ScopedMountNode& node);
29 ~KernelHandle();
51 DISALLOW_COPY_AND_ASSIGN(KernelHandle);
54 typedef sdk_util::ScopedRef<KernelHandle> ScopedKernelHandle;

Completed in 324 milliseconds