HomeSort by relevance Sort by last modified time
    Searched refs:a_mode (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_dev.h 17 virtual Error Access(const Path& path, int a_mode);
mount_passthrough.h 21 virtual Error Access(const Path& path, int a_mode);
mount_html5fs.h 21 virtual Error Access(const Path& path, int a_mode);
mount_mem.h 32 virtual Error Access(const Path& path, int a_mode);
mount.h 66 virtual Error Access(const Path& path, int a_mode) = 0;
mount_http.h 22 virtual Error Access(const Path& path, int a_mode);
mount_mem.cc 79 Error MountMem::Access(const Path& path, int a_mode) {
87 if (((a_mode & R_OK) && !(obj_mode & S_IREAD)) ||
88 ((a_mode & W_OK) && !(obj_mode & S_IWRITE)) ||
89 ((a_mode & X_OK) && !(obj_mode & S_IEXEC))) {
mount_stream.h 58 virtual Error Access(const Path& path, int a_mode);
mount_fuse.h 25 virtual Error Access(const Path& path, int a_mode);
mount_stream.cc 88 Error MountStream::Access(const Path& path, int a_mode) { return EACCES; }
mount_passthrough.cc 120 Error MountPassthrough::Access(const Path& path, int a_mode) {
mount_dev.cc 263 Error MountDev::Access(const Path& path, int a_mode) {
270 if (a_mode & X_OK)
mount_fuse.cc 57 Error MountFuse::Access(const Path& path, int a_mode) {
61 int result = fuse_ops_->access(path.Join().c_str(), a_mode);
mount_http.cc 42 Error MountHttp::Access(const Path& path, int a_mode) {
60 if (a_mode & (W_OK | X_OK))
mount_html5fs.cc 29 Error MountHtml5Fs::Access(const Path& path, int a_mode) {
30 // a_mode is unused, since all files are readable, writable and executable.
  /external/qemu/distrib/sdl-1.2.15/src/file/
SDL_rwops.c 56 int a_mode; local
76 a_mode = ( SDL_strchr(mode,'a') != NULL ) ? OPEN_ALWAYS : 0;
77 w_right = ( a_mode || SDL_strchr(mode,'+') || truncate ) ? GENERIC_WRITE : 0;
101 NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
137 NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
164 NULL, (must_exist|truncate|a_mode), FILE_ATTRIBUTE_NORMAL,NULL);
182 context->hidden.win32io.append = a_mode;
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
kernel_object_test.cc 34 Error Access(const Path& path, int a_mode) { return ENOSYS; }
kernel_proxy_test.cc 519 virtual Error Access(const Path& path, int a_mode) { return 0; }

Completed in 52 milliseconds