OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:KernelProxy
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.h
29
//
KernelProxy
provide one-to-one mapping for libc kernel calls. Calls to the
32
// NOTE: The
KernelProxy
does not directly take any kernel locks, all locking
33
// is done by the parent class KernelObject. Instead,
KernelProxy
is
40
// NOTE: The
KernelProxy
is the only class that should be setting errno. All
42
class
KernelProxy
: protected KernelObject {
46
KernelProxy
();
47
virtual ~
KernelProxy
();
69
// Path related System calls handled by
KernelProxy
(not mount-specific)
80
// Stub system calls that don't do anything (yet), handled by
KernelProxy
.
204
static
KernelProxy
*s_instance_
[
all
...]
kernel_proxy.cc
53
KernelProxy
::
KernelProxy
() : dev_(0), ppapi_(NULL),
59
KernelProxy
::~
KernelProxy
() {
70
Error
KernelProxy
::Init(PepperInterface* ppapi) {
128
bool
KernelProxy
::RegisterMountType(const char* mount_type,
138
bool
KernelProxy
::UnregisterMountType(const char* mount_type) {
148
int
KernelProxy
::open_resource(const char* path) {
179
int
KernelProxy
::open(const char* path, int open_flags) {
199
int
KernelProxy
::pipe(int pipefds[2])
[
all
...]
Completed in 560 milliseconds