HomeSort by relevance Sort by last modified time
    Searched refs:exclusive (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemFlags.h 41 , exclusive(false)
44 options.get("exclusive", exclusive);
48 bool exclusive; member in struct:WebCore::FileSystemFlags
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
klm_prot.x 70 bool exclusive; /* FALSE if shared lock */
100 bool exclusive;
108 bool exclusive;
nlm_prot.x 28 bool exclusive;
68 bool exclusive;
77 bool exclusive;
83 bool exclusive;
klm_prot.h 36 bool_t exclusive; member in struct:klm_holder
58 bool_t exclusive; member in struct:klm_lockargs
64 bool_t exclusive; member in struct:klm_testargs
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
klm_prot.x 70 bool exclusive; /* FALSE if shared lock */
100 bool exclusive;
108 bool exclusive;
nlm_prot.x 28 bool exclusive;
68 bool exclusive;
77 bool exclusive;
83 bool exclusive;
klm_prot.h 36 bool_t exclusive; member in struct:klm_holder
58 bool_t exclusive; member in struct:klm_lockargs
64 bool_t exclusive; member in struct:klm_testargs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
klm_prot.x 70 bool exclusive; /* FALSE if shared lock */
100 bool exclusive;
108 bool exclusive;
nlm_prot.x 28 bool exclusive;
68 bool exclusive;
77 bool exclusive;
83 bool exclusive;
klm_prot.h 36 bool_t exclusive; member in struct:klm_holder
58 bool_t exclusive; member in struct:klm_lockargs
64 bool_t exclusive; member in struct:klm_testargs
  /frameworks/base/tools/preload/
Operation.java 83 long exclusive = inclusiveTimeNanos(); local
86 exclusive -= child.inclusiveTimeNanos();
89 if (exclusive < 0) {
93 return nanosToMicros(exclusive);
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 448 private int insert0(int pos, byte[] code, boolean exclusive)
456 pos = insertGapAt(pos, len, exclusive).position;
505 * Inserts an exclusive gap
524 * Inserts an exclusive gap in front of the instruction at the given
561 * Inserts an inclusive or exclusive gap in front of the instruction
569 * then it is included within that block. If the gap is exclusive,
588 * @param exclusive true if exclusive, otherwise false.
592 public Gap insertGapAt(int pos, int length, boolean exclusive)
596 * cursorPos indicates the next bytecode whichever exclusive i
    [all...]
ExceptionTable.java 251 void shiftPc(int where, int gapLength, boolean exclusive) {
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))
StackMap.java 375 void shiftPc(int where, int gapSize, boolean exclusive)
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) {
389 this.exclusive = exclusive;
393 if (exclusive ? where <= offset : where < offset)
LineNumberAttribute.java 172 void shiftPc(int where, int gapLength, boolean exclusive) {
177 if (pc > where || (exclusive && pc == where))
  /external/chromium_org/third_party/WebKit/Source/web/
AsyncFileSystemChromium.cpp 87 void AsyncFileSystemChromium::createFile(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
89 m_webFileSystem->createFile(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
92 void AsyncFileSystemChromium::createDirectory(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
94 m_webFileSystem->createDirectory(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
AsyncFileSystemChromium.h 59 virtual void createFile(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
60 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
WorkerAsyncFileSystemChromium.h 69 virtual void createFile(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
70 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
  /external/chromium_org/content/child/fileapi/
webfilesystem_impl.h 50 bool exclusive,
54 bool exclusive,
  /external/chromium_org/content/test/data/fileapi/
create_test.js 7 fs.root.getFile('foo', {create: true, exclusive: false}, done,
quota_test.js 6 fs.root.getFile('fd', {create: false, exclusive: false}, function(fileEntry) {
25 fs.root.getFile('fd', {create: true, exclusive: false}, function(fileEntry) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/
AsyncFileSystem.h 94 // Creates a file at a given path. If exclusive flag is true, it fails if the path already exists.
97 virtual void createFile(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
99 // Creates a directory at a given path. If exclusive flag is true, it fails if the path already exists.
102 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileSystem.h 87 // If |exclusive| is true, it fails if the |path| already exists.
88 // If |exclusive| is false, it succeeds if the |path| already exists or
93 virtual void createFile(const WebURL& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
97 // If |exclusive| is true, it fails if the |path| already exists.
98 // If |exclusive| is false, it succeeds if the |path| already exists or it has successfully created a new directory at |path|.
103 virtual void createDirectory(const WebURL& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_operation.h 37 bool exclusive,
40 bool exclusive,
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation.h 123 // Creates a file at |path|. If |exclusive| is true, an error is raised
126 bool exclusive,
129 // Creates a directory at |path|. If |exclusive| is true, an error is
134 bool exclusive,

Completed in 396 milliseconds

1 2 3 4 5 6 7