| /external/webkit/Source/WebCore/storage/ |
| IDBCursorBackendImpl.cpp | 78 void IDBCursorBackendImpl::update(PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBCallbacks> callbacks, ExceptionCode& ec) 85 m_objectStore->put(value, m_cursor->primaryKey(), IDBObjectStoreBackendInterface::CursorUpdate, callbacks, m_transaction.get(), ec); 92 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 93 if (!m_transaction->scheduleTask(createCallbackTask(&IDBCursorBackendImpl::continueFunctionInternal, cursor, key, callbacks))) 99 void IDBCursorBackendImpl::continueFunctionInternal(ScriptExecutionContext*, PassRefPtr<IDBCursorBackendImpl> prpCursor, PassRefPtr<IDBKey> prpKey, PassRefPtr<IDBCallbacks> callbacks) 106 callbacks->onSuccess(SerializedScriptValue::nullValue()); 110 callbacks->onSuccess(cursor.get());
|
| IDBIndexBackendImpl.cpp | 71 void IDBIndexBackendImpl::openCursorInternal(ScriptExecutionContext*, PassRefPtr<IDBIndexBackendImpl> index, PassRefPtr<IDBKeyRange> range, unsigned short untypedDirection, IDBCursorBackendInterface::CursorType cursorType, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<IDBTransactionBackendInterface> transaction) 91 callbacks->onSuccess(SerializedScriptValue::nullValue()); 100 callbacks->onSuccess(cursor.release()); 107 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 109 if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, IDBCursorBackendInterface::IndexCursor, callbacks, transaction))) 117 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 119 if (!transaction->scheduleTask(createCallbackTask(&openCursorInternal, index, keyRange, direction, IDBCursorBackendInterface::IndexKeyCursor, callbacks, transaction))) 123 void IDBIndexBackendImpl::getInternal(ScriptExecutionContext*, PassRefPtr<IDBIndexBackendImpl> index, PassRefPtr<IDBKey> key, bool getObject, PassRefPtr<IDBCallbacks> callbacks) 129 callbacks->onError(IDBDatabaseError::create(IDBDatabaseException::NOT_FOUND_ERR, "Key does not exist in the index.")); 132 callbacks->onSuccess(SerializedScriptValue::createFromWire(value)) 147 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 156 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local [all...] |
| IDBDatabaseBackendImpl.cpp | 44 static PassRefPtr<PendingSetVersionCall> create(const String& version, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<IDBDatabaseCallbacks> databaseCallbacks) 46 return adoptRef(new PendingSetVersionCall(version, callbacks, databaseCallbacks)); 49 PassRefPtr<IDBCallbacks> callbacks() { return m_callbacks; } function in class:WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall 53 PendingSetVersionCall(const String& version, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<IDBDatabaseCallbacks> databaseCallbacks) 55 , m_callbacks(callbacks) 167 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 170 callbacks->onError(IDBDatabaseError::create(IDBDatabaseException::ABORT_ERR, "Connection was closed before set version transaction was created")); 178 callbacks->onBlocked(); 179 RefPtr<PendingSetVersionCall> pendingSetVersionCall = PendingSetVersionCall::create(version, callbacks, databaseCallbacks); 187 if (!transaction->scheduleTask(createCallbackTask(&IDBDatabaseBackendImpl::setVersionInternal, database, version, callbacks, transaction) 226 RefPtr<IDBDatabaseCallbacks> callbacks = prpCallbacks; local [all...] |
| IDBObjectStoreBackendImpl.cpp | 88 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 89 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::getInternal, objectStore, key, callbacks))) 93 void IDBObjectStoreBackendImpl::getInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl> objectStore, PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks> callbacks) 97 callbacks->onSuccess(SerializedScriptValue::undefinedValue()); 101 callbacks->onSuccess(SerializedScriptValue::createFromWire(wireData)); 131 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 135 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::putInternal, objectStore, value, key, putMode, callbacks, transaction))) 139 PassRefPtr<IDBKey> IDBObjectStoreBackendImpl::selectKeyForPut(IDBObjectStoreBackendImpl* objectStore, IDBKey* key, PutMode putMode, IDBCallbacks* callbacks, RefPtr<SerializedScriptValue>& value) 148 callbacks->onError(IDBDatabaseError::create(IDBDatabaseException::DATA_ERR, "A key was supplied for an objectStore that has a keyPath.")); 171 callbacks->onError(IDBDatabaseError::create(IDBDatabaseException::DATA_ERR, "The generated key could not be (…) 281 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 315 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local 456 RefPtr<IDBCallbacks> callbacks = prpCallbacks; local [all...] |
| /sdk/swtmenubar/src/com/android/menubar/ |
| MenuBarEnhancer.java | 56 * @param callbacks Callbacks called when "About" and "Preferences" menu items are invoked. 65 IMenuBarCallback callbacks) { 67 IMenuBarEnhancer enhancer = getEnhancer(callbacks); 80 final IMenuBarCallback callbacks) { 97 callbacks.onPreferencesMenuSelected(); 110 callbacks.onAboutMenuSelected(); 121 enhancer.setupMenu(appName, swtMenu.getDisplay(), callbacks); 134 IMenuBarCallback callbacks = new IMenuBarCallback() { local 152 IMenuBarEnhancer enhancer = getEnhancer(callbacks); [all...] |
| /external/tremolo/Tremolo/ |
| ivorbisfile.h | 49 /* The function prototypes for the callbacks are basically the same as for 96 ov_callbacks callbacks; member in struct:OggVorbis_File 103 char *initial, long ibytes, ov_callbacks callbacks); 107 char *initial, long ibytes, ov_callbacks callbacks);
|
| /external/webkit/Source/WebCore/fileapi/ |
| DOMFileSystem.cpp | 111 OwnPtr<FileWriterBaseCallbacks> callbacks = FileWriterBaseCallbacks::create(fileWriter, conversionCallback, errorCallback); local 112 m_asyncFileSystem->createWriter(fileWriter.get(), platformPath, callbacks.release());
|
| 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());
|
| DOMFileSystemSync.cpp | 252 OwnPtr<FileWriterBaseCallbacks> callbacks = FileWriterBaseCallbacks::create(fileWriter, successCallback, errorCallback); local 253 m_asyncFileSystem->createWriter(fileWriter.get(), platformPath, callbacks.release());
|
| /development/ndk/platforms/android-9/include/android/ |
| native_activity.h | 44 * You can set the functions here to your own callbacks. The callbacks 48 struct ANativeActivityCallbacks* callbacks; member in struct:ANativeActivity 97 * These are the callbacks the framework makes into a native application. 98 * All of these callbacks happen on the main thread of the application. 99 * By default, all callbacks are NULL; set to a pointer to your own function
|
| /external/chromium/chrome/browser/download/ |
| download_request_limiter.cc | 40 // We should only be destroyed after the callbacks have been notified. 144 std::vector<DownloadRequestLimiter::Callback*> callbacks; local 157 callbacks.swap(callbacks_); 162 callbacks.assign(start, end); 167 for (size_t i = 0; i < callbacks.size(); ++i) 168 host_->ScheduleNotification(callbacks[i], allow); 181 // removes from state_map_. As such, there should be no pending callbacks.
|
| /external/oprofile/agents/jvmti/ |
| libjvmti_oprofile.c | 242 jvmtiEventCallbacks callbacks; local 292 memset(&callbacks, 0, sizeof(callbacks)); 293 callbacks.CompiledMethodLoad = cb_compiled_method_load; 294 callbacks.CompiledMethodUnload = cb_compiled_method_unload; 295 callbacks.DynamicCodeGenerated = cb_dynamic_code_generated; 296 error = (*jvmti)->SetEventCallbacks(jvmti, &callbacks, 297 sizeof(callbacks));
|
| /frameworks/base/core/java/android/app/ |
| Application.java | 87 Object[] callbacks = collectComponentCallbacks(); local 88 if (callbacks != null) { 89 for (int i=0; i<callbacks.length; i++) { 90 ((ComponentCallbacks)callbacks[i]).onConfigurationChanged(newConfig); 96 Object[] callbacks = collectComponentCallbacks(); local 97 if (callbacks != null) { 98 for (int i=0; i<callbacks.length; i++) { 99 ((ComponentCallbacks)callbacks[i]).onLowMemory(); 105 Object[] callbacks = collectComponentCallbacks(); local 106 if (callbacks != null) 151 Object[] callbacks = collectActivityLifecycleCallbacks(); local 161 Object[] callbacks = collectActivityLifecycleCallbacks(); local 170 Object[] callbacks = collectActivityLifecycleCallbacks(); local 179 Object[] callbacks = collectActivityLifecycleCallbacks(); local 188 Object[] callbacks = collectActivityLifecycleCallbacks(); local 197 Object[] callbacks = collectActivityLifecycleCallbacks(); local 207 Object[] callbacks = collectActivityLifecycleCallbacks(); local 216 Object[] callbacks = null; local 226 Object[] callbacks = null; local [all...] |
| /frameworks/base/native/include/android/ |
| native_activity.h | 44 * You can set the functions here to your own callbacks. The callbacks 48 struct ANativeActivityCallbacks* callbacks; member in struct:ANativeActivity 104 * These are the callbacks the framework makes into a native application. 105 * All of these callbacks happen on the main thread of the application. 106 * By default, all callbacks are NULL; set to a pointer to your own function
|
| /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/android/ |
| native_activity.h | 44 * You can set the functions here to your own callbacks. The callbacks 48 struct ANativeActivityCallbacks* callbacks; member in struct:ANativeActivity 97 * These are the callbacks the framework makes into a native application. 98 * All of these callbacks happen on the main thread of the application. 99 * By default, all callbacks are NULL; set to a pointer to your own function
|
| /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/android/ |
| native_activity.h | 44 * You can set the functions here to your own callbacks. The callbacks 48 struct ANativeActivityCallbacks* callbacks; member in struct:ANativeActivity 97 * These are the callbacks the framework makes into a native application. 98 * All of these callbacks happen on the main thread of the application. 99 * By default, all callbacks are NULL; set to a pointer to your own function
|
| /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/android/ |
| native_activity.h | 44 * You can set the functions here to your own callbacks. The callbacks 48 struct ANativeActivityCallbacks* callbacks; member in struct:ANativeActivity 97 * These are the callbacks the framework makes into a native application. 98 * All of these callbacks happen on the main thread of the application. 99 * By default, all callbacks are NULL; set to a pointer to your own function
|
| /sdk/swtmenubar/src-darwin/com/android/menubar/internal/ |
| MenuBarEnhancerCarbon.java | 48 final IMenuBarCallback callbacks) { 66 callbacks.onPreferencesMenuSelected(); 69 callbacks.onAboutMenuSelected(); 83 log(callbacks, "%1$s: commandProc hook failed.", getClass().getSimpleName()); //$NON-NLS-1$ 130 private void log(IMenuBarCallback callbacks, String format, Object... args) { 131 callbacks.printError(format , args);
|
| /external/chromium/third_party/libevent/ |
| http-internal.h | 116 TAILQ_HEAD(httpcbq, evhttp_cb) callbacks; member in struct:evhttp
|
| /external/ppp/pppd/ |
| fsm.h | 64 * Each FSM is described by an fsm structure and fsm callbacks. 81 struct fsm_callbacks *callbacks; /* Callback routines */ member in struct:fsm
|
| /external/webkit/Source/WebCore/platform/graphics/cg/ |
| PathCG.cpp | 51 CGDataConsumerCallbacks callbacks = { putBytesNowhere, 0 }; local 52 RetainPtr<CGDataConsumerRef> consumer(AdoptCF, CGDataConsumerCreate(0, &callbacks));
|
| /external/webkit/Source/WebKit/chromium/src/ |
| WorkerFileSystemCallbacksBridge.cpp | 89 // Callbacks are self-destructed and we always return leaked pointer here. 92 OwnPtr<MainThreadFileSystemCallbacks> callbacks = adoptPtr(new MainThreadFileSystemCallbacks(bridge, mode)); local 93 return callbacks.leakPtr(); 302 WorkerFileSystemCallbacksBridge::WorkerFileSystemCallbacksBridge(WebWorkerBase* worker, ScriptExecutionContext* scriptExecutionContext, WebFileSystemCallbacks* callbacks) 306 , m_callbacksOnWorkerThread(callbacks)
|
| /external/bluetooth/bluez/gdbus/ |
| watch.c | 74 GSList *callbacks; member in struct:filter_data 255 for (l = data->callbacks; l; l = l->next) { 273 for (l = data->callbacks; l != NULL; l = l->next) 276 g_slist_free(data->callbacks); 292 for (l = data->callbacks; l != NULL; l = l->next) { 326 data->callbacks = g_slist_append(data->callbacks, cb); 354 data->callbacks = g_slist_remove(data->callbacks, cb); 369 /* Don't remove the filter if other callbacks exist or data is loc [all...] |
| /frameworks/base/services/java/com/android/server/ |
| AppWidgetService.java | 109 IAppWidgetHost callbacks; field in class:AppWidgetService.Host 252 pw.print(" callbacks="); pw.println(host.callbacks); 269 pw.print(" host.callbacks="); pw.println(id.host.callbacks); 396 host.callbacks = null; 782 if (id.host.callbacks != null) { 785 id.host.callbacks.updateAppWidget(id.appWidgetId, views); 789 id.host.callbacks = null; 801 if (id.host.callbacks != null) [all...] |
| /external/dbus/dbus/ |
| dbus-mainloop.c | 58 DBusList *callbacks; member in struct:DBusLoop 178 if (!_dbus_list_append (&loop->callbacks, cb)) 213 _dbus_list_remove_link (&loop->callbacks, link); 293 link = _dbus_list_get_first_link (&loop->callbacks); 296 DBusList *next = _dbus_list_get_next_link (&loop->callbacks, link); 347 link = _dbus_list_get_first_link (&loop->callbacks); 350 DBusList *next = _dbus_list_get_next_link (&loop->callbacks, link); 550 if (loop->callbacks == NULL) 578 link = _dbus_list_get_first_link (&loop->callbacks); 581 DBusList *next = _dbus_list_get_next_link (&loop->callbacks, link) [all...] |