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

/external/bluetooth/glib/glib/
H A Dgthreadpool.h49 gboolean exclusive; member in struct:_GThreadPool
53 * run at a time (max_threads == -1 means no limit), exclusive == TRUE
60 gboolean exclusive,
/external/webkit/Source/WebCore/fileapi/
H A DWebKitFlags.h43 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; } argument
54 WebKitFlags(bool create, bool exclusive) argument
56 , m_exclusive(exclusive)
/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)
H A DStackMapTable.java788 void shiftPc(int where, int gapSize, boolean exclusive) argument
791 new Shifter(this, where, gapSize, exclusive).doit();
799 private boolean exclusive; field in class:StackMapTable.Shifter
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) { argument
808 this.exclusive = exclusive;
829 if (exclusive)
876 if (exclusive)
H A DCodeIterator.java448 private int insert0(int pos, byte[] code, boolean exclusive) argument
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) argument
596 * cursorPos indicates the next bytecode whichever exclusive i
796 insertGapCore0(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument
817 insertGapCore1(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument
853 insertGap2(byte[] code, int where, int gapLength, int endPos, byte[] newcode, boolean exclusive) argument
973 newOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument
1014 shiftPc(int where, int gapLength, boolean exclusive) argument
1086 insertGapCore0w(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca, Gap newWhere) argument
1110 insertGap2w(byte[] code, int where, int gapLength, boolean exclusive, ArrayList jumps, Pointers ptrs) argument
1270 shift(int where, int gapLength, boolean exclusive) argument
1275 shiftOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument
1347 shift(int where, int gapLength, boolean exclusive) argument
1435 shift(int where, int gapLength, boolean exclusive) argument
1458 shift(int where, int gapLength, boolean exclusive) argument
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileSystem.h82 // 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(); } argument
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(); } argument
/external/webkit/Source/WebKit/chromium/src/
H A DAsyncFileSystemChromium.cpp89 void AsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
91 m_webFileSystem->createFile(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
94 void AsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
96 m_webFileSystem->createDirectory(path, exclusive, new WebKit::WebFileSystemCallbacksImpl(callbacks));
H A DWorkerAsyncFileSystemChromium.cpp115 void WorkerAsyncFileSystemChromium::createFile(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
117 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateFileToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
120 void WorkerAsyncFileSystemChromium::createDirectory(const String& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
122 createWorkerFileSystemCallbacksBridge(callbacks)->postCreateDirectoryToMainThread(m_webFileSystem, path, exclusive, m_modeForCurrentOperation);
H A DWorkerFileSystemCallbacksBridge.cpp189 void WorkerFileSystemCallbacksBridge::postCreateFileToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode) argument
191 dispatchTaskToMainThread(createCallbackTask(&createFileOnMainThread, fileSystem, path, exclusive, this, mode));
194 void WorkerFileSystemCallbacksBridge::postCreateDirectoryToMainThread(WebFileSystem* fileSystem, const String& path, bool exclusive, const String& mode) argument
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) argument
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) argument
259 fileSystem->createDirectory(path, exclusive, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
/external/chromium/base/
H A Dfile_util_proxy.cc387 bool exclusive,
392 exclusive_(exclusive),
799 bool exclusive,
803 file_path, exclusive, recursive, callback));
385 RelayCreateDirectory( const FilePath& file_path, bool exclusive, bool recursive, base::FileUtilProxy::StatusCallback* callback) argument
796 CreateDirectory( scoped_refptr<MessageLoopProxy> message_loop_proxy, const FilePath& file_path, bool exclusive, bool recursive, StatusCallback* callback) argument
/external/qemu/audio/
H A Dossaudio.c71 int exclusive; member in struct:__anon8990
80 .exclusive = 0,
272 int oflags = conf.exclusive ? O_EXCL : 0;
889 .valp = &conf.exclusive,
890 .descr = "Open device in exclusive mode (vmix wont work)"
/external/linux-tools-perf/util/
H A Dpython.c403 "exclusive",
426 exclusive = 0, local
448 &pinned, &exclusive, &exclude_user,
468 attr.exclusive = exclusive;
/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.c47 __u8 exclusive:1; // exclusive member in struct:__anon14651
387 if(yaffsfs_handle[i].exclusive)
448 h->exclusive = (oflag & O_EXCL) ? 1 : 0;
/external/kernel-headers/original/linux/
H A Dperf_event.h194 exclusive : 1, /* only group on PMU */ member in struct:perf_event_attr
795 int exclusive; member in struct:perf_cpu_context
/external/linux-tools-perf/util/include/linux/added/
H A Dperf_event.h204 exclusive : 1, /* only group on PMU */ member in struct:perf_event_attr
947 int exclusive; member in struct:perf_cpu_context
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/valgrind/main/include/vki/
H A Dvki-linux.h2658 exclusive : 1, /* only group on PMU */ member in struct:vki_perf_event_attr

Completed in 332 milliseconds