Searched defs:exclusive (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileSystemFlags.h41 , exclusive(false)
44 options.get("exclusive", exclusive);
48 bool exclusive; member in struct:WebCore::FileSystemFlags
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dtask_dependency_manager.h21 bool exclusive; member in struct:sync_file_system::drive_backend::BlockingFactor
/external/javassist/src/main/javassist/bytecode/
H A DLineNumberAttribute.java172 void shiftPc(int where, int gapLength, boolean exclusive) { argument
177 if (pc > where || (exclusive && pc == where))
H A DExceptionTable.java251 void shiftPc(int where, int gapLength, boolean exclusive) { argument
255 e.startPc = shiftPc(e.startPc, where, gapLength, exclusive);
256 e.endPc = shiftPc(e.endPc, where, gapLength, exclusive);
257 e.handlerPc = shiftPc(e.handlerPc, where, gapLength, exclusive);
262 boolean exclusive) {
263 if (pc > where || (exclusive && pc == where))
261 shiftPc(int pc, int where, int gapLength, boolean exclusive) argument
H A DLocalVariableAttribute.java180 void shiftPc(int where, int gapLength, boolean exclusive) { argument
189 if (pc > where || (exclusive && pc == where && pc != 0))
191 else if (pc + len > where || (exclusive && pc + len == where))
H A DStackMap.java375 void shiftPc(int where, int gapSize, boolean exclusive) argument
378 new Shifter(this, where, gapSize, exclusive).visit();
383 private boolean exclusive; field in class:StackMap.Shifter
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) { argument
389 this.exclusive = exclusive;
393 if (exclusive ? where <= offset : where < offset)
/external/chromium_org/chrome/browser/local_discovery/storage/
H A Dprivet_filesystem_async_util.cc46 bool exclusive,
43 CreateDirectory( scoped_ptr<fileapi::FileSystemOperationContext> context, const fileapi::FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileSystem.h108 // If |exclusive| is true, it fails if the |path| already exists.
109 // If |exclusive| is false, it succeeds if the |path| already exists or
114 virtual void createFile(const WebURL& path, bool exclusive, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); } argument
118 // If |exclusive| is true, it fails if the |path| already exists.
119 // If |exclusive| is false, it succeeds if the |path| already exists or it has successfully created a new directory at |path|.
124 virtual void createDirectory(const WebURL& path, bool exclusive, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/qemu/distrib/zlib-1.2.8/
H A Dgzlib.c103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
/external/zlib/src/
H A Dgzlib.c103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
/external/chromium_org/chrome/browser/chromeos/drive/fileapi/
H A Dasync_file_util.cc182 bool exclusive,
196 file_path, exclusive, recursive,
179 CreateDirectory( scoped_ptr<fileapi::FileSystemOperationContext> context, const fileapi::FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
/external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
H A Dprovider_async_file_util.cc111 bool exclusive,
108 CreateDirectory( scoped_ptr<fileapi::FileSystemOperationContext> context, const fileapi::FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_system_operation.cc78 bool exclusive,
92 url, exclusive,
99 bool exclusive,
118 url, exclusive, recursive,
76 CreateFile( const FileSystemURL& url, bool exclusive, const StatusCallback& callback) argument
97 CreateDirectory( const FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
/external/chromium_org/webkit/browser/fileapi/
H A Dasync_file_util_adapter.cc184 bool exclusive,
192 base::Owned(context_ptr), url, exclusive, recursive),
181 CreateDirectory( scoped_ptr<FileSystemOperationContext> context, const FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
H A Dlocal_file_util.cc107 bool exclusive,
113 return NativeFileUtil::CreateDirectory(file_path, exclusive, recursive);
104 CreateDirectory( FileSystemOperationContext* context, const FileSystemURL& url, bool exclusive, bool recursive) argument
H A Dnative_file_util.cc167 bool exclusive,
174 if (exclusive && path_exists)
165 CreateDirectory( const base::FilePath& path, bool exclusive, bool recursive) argument
H A Dfile_system_operation_impl.cc46 bool exclusive,
52 weak_factory_.GetWeakPtr(), url, callback, exclusive),
57 bool exclusive,
65 exclusive, recursive),
382 bool exclusive) {
386 exclusive ?
395 bool exclusive, bool recursive) {
398 url, exclusive, recursive,
45 CreateFile(const FileSystemURL& url, bool exclusive, const StatusCallback& callback) argument
56 CreateDirectory(const FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
379 DoCreateFile( const FileSystemURL& url, const StatusCallback& callback, bool exclusive) argument
392 DoCreateDirectory( const FileSystemURL& url, const StatusCallback& callback, bool exclusive, bool recursive) argument
H A Dfile_system_operation_runner.cc44 bool exclusive,
58 url, exclusive,
66 bool exclusive,
80 url, exclusive, recursive,
42 CreateFile( const FileSystemURL& url, bool exclusive, const StatusCallback& callback) argument
64 CreateDirectory( const FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzlib.c103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenu.java114 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
H A DMenuLoaderTest.java128 boolean exclusive) {
127 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Ddevice_media_async_file_util.cc295 bool exclusive,
292 CreateDirectory( scoped_ptr<FileSystemOperationContext> context, const FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
H A Dnative_media_file_util.cc155 bool exclusive,
164 url, exclusive, recursive, callback));
317 bool exclusive,
322 CreateDirectorySync(context.get(), url, exclusive, recursive);
430 bool exclusive,
436 return fileapi::NativeFileUtil::CreateDirectory(file_path, exclusive,
152 CreateDirectory( scoped_ptr<fileapi::FileSystemOperationContext> context, const fileapi::FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
314 CreateDirectoryOnTaskRunnerThread( scoped_ptr<fileapi::FileSystemOperationContext> context, const fileapi::FileSystemURL& url, bool exclusive, bool recursive, const StatusCallback& callback) argument
427 CreateDirectorySync( fileapi::FileSystemOperationContext* context, const fileapi::FileSystemURL& url, bool exclusive, bool recursive) argument
/external/chromium_org/content/browser/fileapi/
H A Dfileapi_message_filter.cc325 int request_id, const GURL& path, bool exclusive,
339 url, exclusive, recursive,
343 url, exclusive,
324 OnCreate( int request_id, const GURL& path, bool exclusive, bool is_directory, bool recursive) argument
/external/chromium_org/content/child/fileapi/
H A Dfile_system_dispatcher.cc245 bool exclusive,
249 request_id, path, exclusive,
255 bool exclusive,
260 request_id, path, exclusive, true /* is_directory */, recursive));
243 CreateFile( const GURL& path, bool exclusive, const StatusCallback& callback) argument
253 CreateDirectory( const GURL& path, bool exclusive, bool recursive, const StatusCallback& callback) argument

Completed in 4749 milliseconds

12