Searched defs:sharing (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/disk_cache/
H A Dcache_util_win.cc34 DWORD sharing = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE; local
37 name.value().c_str(), access, sharing, NULL, OPEN_EXISTING, 0, NULL));
H A Dbackend_unittest.cc3055 // Tests that sharing of external files works and we are able to delete the
3068 DWORD sharing = FILE_SHARE_READ | FILE_SHARE_WRITE; local
3071 name.value().c_str(), access, sharing, NULL, OPEN_EXISTING, 0, NULL));
3074 sharing |= FILE_SHARE_DELETE;
3075 file2.Set(CreateFile(name.value().c_str(), access, sharing, NULL,
/external/chromium_org/sandbox/win/src/
H A Dfilesystem_interception.cc23 ULONG file_attributes, ULONG sharing,
29 file_attributes, sharing, disposition,
70 desired_access, file_attributes, sharing,
97 PIO_STATUS_BLOCK io_status, ULONG sharing,
101 io_status, sharing, options);
139 desired_access, sharing, options, &answer);
18 TargetNtCreateFile(NtCreateFileFunction orig_CreateFile, PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing, ULONG disposition, ULONG options, PVOID ea_buffer, ULONG ea_length) argument
94 TargetNtOpenFile(NtOpenFileFunction orig_OpenFile, PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, ULONG sharing, ULONG options) argument
H A Dpolicy_low_level_unittest.cc259 unsigned long sharing = 66; local
264 POLPARAM(sharing) // Argument 2
306 sharing = 0;
H A Dinterceptors_64.cc77 PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing,
83 sharing, disposition, options, ea_buffer,
90 ULONG sharing, ULONG options) {
94 io_status, sharing, options);
74 TargetNtCreateFile64( PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing, ULONG disposition, ULONG options, PVOID ea_buffer, ULONG ea_length) argument
87 TargetNtOpenFile64( PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, ULONG sharing, ULONG options) argument
/external/chromium_org/base/files/
H A Dfile_win.cc66 DWORD sharing = (flags & FLAG_EXCLUSIVE_READ) ? 0 : FILE_SHARE_READ; local
68 sharing |= FILE_SHARE_WRITE;
70 sharing |= FILE_SHARE_DELETE;
84 file_.Set(CreateFile(name.value().c_str(), access, sharing, NULL,
/external/chromium_org/v8/src/
H A Dobjects.cc2359 // the current instance_descriptors to ensure proper sharing of descriptor
7069 NormalizedMapSharingMode sharing) {
7081 result->set_is_shared(sharing == SHARED_NORMALIZED_MAP);
7067 CopyNormalized(Handle<Map> map, PropertyNormalizationMode mode, NormalizedMapSharingMode sharing) argument

Completed in 757 milliseconds