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

1 2 3 4 5 6 7 8

  /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/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpcsvc/
klm_prot.x 68 bool exclusive; /* FALSE if shared lock */
98 bool exclusive;
106 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
nlm_prot.h 29 bool_t exclusive; member in struct:nlm_holder
75 bool_t exclusive; member in struct:nlm_lockargs
85 bool_t exclusive; member in struct:nlm_cancargs
92 bool_t exclusive; member in struct:nlm_testargs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
klm_prot.x 68 bool exclusive; /* FALSE if shared lock */
98 bool exclusive;
106 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
nlm_prot.h 29 bool_t exclusive; member in struct:nlm_holder
75 bool_t exclusive; member in struct:nlm_lockargs
85 bool_t exclusive; member in struct:nlm_cancargs
92 bool_t exclusive; member in struct:nlm_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/chrome/browser/sync_file_system/drive_backend/
sync_task.cc 30 blocking_factor->exclusive = true;
task_dependency_manager.cc 62 BlockingFactor::BlockingFactor() : exclusive(false) {}
84 if (blocking_factor->exclusive) {
127 if (blocking_factor->exclusive) {
task_dependency_manager.h 21 bool exclusive; member in struct:sync_file_system::drive_backend::BlockingFactor
task_dependency_manager_unittest.cc 41 blocker.exclusive = true;
47 blocker.exclusive = true;
  /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/public/platform/
WebFileSystem.h 108 // 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(); }
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(); }
  /external/chromium_org/content/child/fileapi/
webfilesystem_impl.h 84 bool exclusive,
88 bool exclusive,
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_impl.h 35 bool exclusive,
38 bool exclusive,
130 const StatusCallback& callback, bool exclusive);
133 bool exclusive,
152 // Callback for CreateFile for |exclusive|=true cases.
157 // Callback for CreateFile for |exclusive|=false cases.
native_file_util.h 45 bool exclusive,
  /frameworks/base/core/java/android/view/
Menu.java 325 * this group contains a mutually-exclusive set items. This should be called
331 * @param exclusive If set to true, only one item in this group can be
339 public void setGroupCheckable(int group, boolean checkable, boolean exclusive);

Completed in 496 milliseconds

1 2 3 4 5 6 7 8