HomeSort by relevance Sort by last modified time
    Searched full:callbacks (Results 151 - 175 of 1862) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/elfutils/src/
ld.h 294 struct callbacks struct
302 DL_CALL_FCT ((state)->callbacks.lib_extensions, (state))
313 DL_CALL_FCT ((state)->callbacks.file_process, (fd, file, state, nextp))
318 DL_CALL_FCT ((state)->callbacks.file_close, (file, state))
330 DL_CALL_FCT ((state)->callbacks.create_sections, (state))
335 DL_CALL_FCT ((state)->callbacks.flag_unresolved, (state))
341 DL_CALL_FCT ((state)->callbacks.generate_sections, (state))
347 DL_CALL_FCT ((state)->callbacks.open_outfile, (state, machine, class, data))
352 DL_CALL_FCT ((state)->callbacks.create_outfile, (state))
358 DL_CALL_FCT ((state)->callbacks.relocate_section, (state, outscn, first,
848 struct callbacks callbacks; member in struct:ld_state
    [all...]
  /external/elfutils/libdwfl/
dwfl_begin.c 53 dwfl_begin (const Dwfl_Callbacks *callbacks)
66 dwfl->callbacks = callbacks;
  /external/libselinux/include/selinux/
avc.h 112 * User-provided callbacks for memory, auditing, and locking
117 * memory callbacks are malloc() and free(). The default logging method
118 * is to print on stderr. If no thread callbacks are passed, a separate
120 * If no locking callbacks are passed, no locking will take place.
175 * @mem_callbacks: user-supplied memory callbacks
176 * @log_callbacks: user-supplied logging callbacks
177 * @thread_callbacks: user-supplied threading callbacks
178 * @lock_callbacks: user-supplied locking callbacks
184 * for those callbacks (see the definition of the callback
199 * is set to "avc" and any callbacks desired should be specified vi
    [all...]
  /external/webkit/Source/WebKit2/PluginProcess/mac/
PluginProcessShim.mm 40 extern "C" void WebKitPluginProcessShimInitialize(const PluginProcessShimCallbacks& callbacks);
135 void WebKitPluginProcessShimInitialize(const PluginProcessShimCallbacks& callbacks)
137 pluginProcessShimCallbacks = callbacks;
  /sdk/templates/activities/MasterDetailFlow/root/src/app_package/
ContentListActivity.java.ftl 22 * {@link ${CollectionName}Fragment.Callbacks} interface
26 implements ${CollectionName}Fragment.Callbacks {
80 * Callback method from {@link ${CollectionName}Fragment.Callbacks}
  /system/core/include/cutils/
selector.h 33 * Manages SelectableFds and invokes their callbacks at appropriate times.
38 * A selectable descriptor. Contains callbacks which the selector can invoke
66 * callbacks from here as necessary.
  /external/webkit/Source/WebCore/fileapi/
DOMFileSystemBase.cpp 215 OwnPtr<EntryCallbacks> callbacks = EntryCallbacks::create(successCallback, errorCallback, this, absolutePath, false); local
217 m_asyncFileSystem->createFile(platformPath, flags->isExclusive(), callbacks.release());
219 m_asyncFileSystem->fileExists(platformPath, callbacks.release());
230 OwnPtr<EntryCallbacks> callbacks = EntryCallbacks::create(successCallback, errorCallback, this, absolutePath, true); local
232 m_asyncFileSystem->createDirectory(platformPath, flags->isExclusive(), callbacks.release());
234 m_asyncFileSystem->directoryExists(platformPath, callbacks.release());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
CommandQueue.java 31 * thread, and calls onto Callbacks. It also takes care of
68 private Callbacks mCallbacks;
79 public interface Callbacks {
103 public CommandQueue(Callbacks callbacks, StatusBarIconList list) {
104 mCallbacks = callbacks;
  /development/ndk/platforms/android-9/include/android/
looper.h 71 * and no callbacks were executed and no other file descriptors were ready.
77 * One or more callbacks were executed.
155 * Implementations should return 1 to continue receiving callbacks, or 0
162 * Invokes callbacks for all file descriptors on which an event occurred.
168 * the timeout expired and no callbacks were invoked and no other file
171 * Returns ALOOPER_POLL_CALLBACK if one or more callbacks were invoked.
183 * This method does not return until it has finished invoking the appropriate callbacks
189 * Like ALooper_pollOnce(), but performs all pending callbacks until all
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model_unittest.cc 33 // The test observer is used to know if the callbacks are being called.
96 // Run all the tests, verify that the basic callbacks are run and that the
  /external/chromium/chrome/browser/
gpu_data_manager.h 87 // Call all callbacks.
100 // Map of callbacks.
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_service.h 151 // Sets the model status and invokes all the pending callbacks in
156 // exists we're done and we can call all the pending callbacks. If the
166 // give up and send an invalid platform file to all the pending callbacks.
173 // that can be sent to all the pending callbacks. If an error occurs
174 // we give up and send an invalid platform file to all the pending callbacks.
243 // Used to asynchronously call the callbacks for GetModelFile and
248 // of the callbacks are done (e.g., asynchronous file operations). The
249 // callback factory will revoke all pending callbacks if this goes away to
  /external/elfutils/tests/
dwfl-bug-getmodules.c 31 static const Dwfl_Callbacks callbacks = variable
55 Dwfl *dwfl = dwfl_begin (&callbacks);
  /external/libvorbis/doc/vorbisfile/
overview.html 39 <li><p><a href="callbacks.html">Using [non stdio] custom stream I/O
40 via callbacks</a>
  /external/qemu/android/
async-io-common.h 25 * Values from this enum are passed to callbacks associated with an I/O,
56 * Values from this enum are returned from async I/O callbacks, indicating what
display.c 28 /* QFrameBuffer producer callbacks */
50 /* QFrameBuffer client callbacks */
  /external/webkit/Source/WebCore/page/
SpeechInputClient.h 47 // This is the first call made by a listener, registering itself for future callbacks.
49 // it should set a null listener to stop receiving callbacks.
  /external/webkit/Source/WebCore/platform/
AsyncFileSystem.cpp 56 void AsyncFileSystem::openFileSystem(const String& basePath, const String& storageIdentifier, Type type, bool, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
71 callbacks->didOpenFileSystem(name, AsyncFileSystem::create(type, rootPath));
  /external/webkit/Source/WebCore/storage/
IDBTransactionBackendImpl.h 53 virtual void setCallbacks(IDBTransactionCallbacks* callbacks) { m_callbacks = callbacks; }
  /external/webkit/Source/WebKit/chromium/src/
IDBFactoryBackendProxy.cpp 64 void IDBFactoryBackendProxy::open(const String& name, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<SecurityOrigin> origin, Frame* frame, const String& dataDir, int64_t maximumSize, BackingStoreType backingStoreType)
67 m_webIDBFactory->open(name, new WebIDBCallbacksImpl(callbacks), origin, webFrame, dataDir, maximumSize, static_cast<WebIDBFactory::BackingStoreType>(backingStoreType));
IDBTransactionBackendProxy.cpp 88 void IDBTransactionBackendProxy::setCallbacks(IDBTransactionCallbacks* callbacks)
90 m_webIDBTransaction->setCallbacks(new WebIDBTransactionCallbacksImpl(callbacks));
WebFileSystemCallbacksImpl.h 66 // Used for openFileSystem callbacks.
69 // Used for worker's openFileSystem callbacks.
WebIDBCallbacksImpl.cpp 48 WebIDBCallbacksImpl::WebIDBCallbacksImpl(PassRefPtr<IDBCallbacks> callbacks)
49 : m_callbacks(callbacks)
WebIDBFactoryImpl.cpp 61 void WebIDBFactoryImpl::open(const WebString& name, WebIDBCallbacks* callbacks, const WebSecurityOrigin& origin, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType backingStoreType)
63 m_idbFactoryBackend->open(name, IDBCallbacksProxy::create(callbacks), origin, 0, dataDir, maximumSize, static_cast<IDBFactoryBackendInterface::BackingStoreType>(backingStoreType));
WebIDBTransactionImpl.cpp 72 void WebIDBTransactionImpl::setCallbacks(WebIDBTransactionCallbacks* callbacks)
74 RefPtr<IDBTransactionCallbacks> idbCallbacks = IDBTransactionCallbacksProxy::create(callbacks);

Completed in 424 milliseconds

1 2 3 4 5 67 8 91011>>