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

1 2 3 4

  /external/webkit/Source/WebCore/fileapi/
WebKitFlags.h 43 static PassRefPtr<WebKitFlags> create(bool create = false, bool exclusive = false)
45 return adoptRef(new WebKitFlags(create, exclusive));
51 void setExclusive(bool exclusive) { m_exclusive = exclusive; }
54 WebKitFlags(bool create, bool exclusive)
56 , m_exclusive(exclusive)
WebKitFlags.idl 38 attribute boolean exclusive;
  /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/webkit/Source/WebKit/chromium/public/
WebFileSystem.h 82 // If |exclusive| is true, it fails if the |path| already exists.
83 // If |exclusive| is false, it succeeds if the |path| already exists or
88 virtual void createFile(const WebString& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
92 // If |exclusive| is true, it fails if the |path| already exists.
93 // If |exclusive| is false, it succeeds if the |path| already exists or it has successfully created a new directory at |path|.
98 virtual void createDirectory(const WebString& path, bool exclusive, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/webkit/Source/WebCore/platform/
AsyncFileSystem.h 100 // Creates a file at a given path. If exclusive flag is true, it fails if the path already exists.
103 virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
105 // Creates a directory at a given path. If exclusive flag is true, it fails if the path already exists.
108 virtual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
  /external/webkit/Source/WebKit/chromium/src/
AsyncFileSystemChromium.h 61 virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
62 virtual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
AsyncFileSystemChromium.cpp 89 void AsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
91 m_webFileSystem->createFile(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
94 void AsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
96 m_webFileSystem->createDirectory(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
WorkerFileSystemCallbacksBridge.h 93 void postCreateFileToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode);
94 void postCreateDirectoryToMainThread(WebFileSystem*, const String& path, bool exclusive, const String& mode);
116 static void createFileOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge*, const String& mode);
117 static void createDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge*, const String& mode);
WorkerAsyncFileSystemChromium.h 70 virtual void createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
71 virtual void createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
WorkerFileSystemCallbacksBridge.cpp 189 void WorkerFileSystemCallbacksBridge::postCreateFileToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode)
191 dispatchTaskToMainThread(createCallbackTask(&createFileOnMainThread, fileSystem, path, exclusive, this, mode));
194 void WorkerFileSystemCallbacksBridge::postCreateDirectoryToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode)
197 dispatchTaskToMainThread(createCallbackTask(&createDirectoryOnMainThread, fileSystem, path, exclusive, this, mode));
252 void WorkerFileSystemCallbacksBridge::createFileOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode)
254 fileSystem->createFile(path, exclusive, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
257 void WorkerFileSystemCallbacksBridge::createDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode)
259 fileSystem->createDirectory(path, exclusive, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
WorkerAsyncFileSystemChromium.cpp 115 void WorkerAsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
117 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateFileToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
120 void WorkerAsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
122 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateDirectoryToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
  /external/webkit/LayoutTests/storage/
open-database-while-transaction-in-progress.js 11 // In order to trigger this bug, the transaction must acquire an exclusive
13 // The only way to force SQLite to obtain an exclusive lock is to change more

Completed in 967 milliseconds

1 2 3 4