/external/libppp/src/ |
lcp.h | 31 /* callback::opmask values */ 38 #define CALLBACK_NONE (14) /* No callback is ok */ 42 struct callback { struct 43 int opmask; /* want these types of callback */ 58 struct callback his_callback; /* Peer wants callback ? */ 71 struct callback want_callback;/* We want callback ? */ 121 #define TY_CALLBACK 13 /* Callback */
|
/external/libselinux/src/ |
callbacks.h | 14 /* callback pointers */
|
/external/qemu/android/ |
adb-server.h | 25 /* Callback to be invoked wheh host ADB gets connected with the guest ADB. 36 /* Callback to be invoked wheh the host ADB sends data to the guest ADB. 51 /* Callback to be invoked wheh the host ADB gets disconnected. 65 /* Callback to invoke when ADB host is connected. */ 67 /* Callback to invoke when ADB host is disconnected. */ 69 /* Callback to invoke when ADB host sends data. */ 92 * callback will be called before this routine returns. 95 * back to thee guest API in callback routines. 96 * callbacks Contains callback routines for the registering guest.
|
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdladdtimer.html | 83 >SDL_AddTimer -- Add a timer which will call a callback after the specified number of milliseconds has 110 >(Uint32 interval, SDL_NewTimerCallback callback, void *param);</CODE 122 >Callback</H2 125 >/* type definition for the "new" timer callback function */ 136 >Adds a callback function to be run after the specified number of 137 milliseconds has elapsed. The callback function is passed the current 143 interval. If the returned value from the callback is the same as the one 158 >The timer callback function may run in a different thread than your 168 you request a 16 ms timer, your callback will run approximately 20 ms
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_AudioSpec.3 | 14 void (*callback)(void *userdata, Uint8 *stream, int len); 40 Callback function for filling the audio buffer 43 Pointer the user data which is passed to the callback function
|
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/ |
add-listener-from-callback-expected.txt | 1 Tests that adding a new event listener from a callback works as expected.
|
add-listener-from-callback.html | 9 <script src="script-tests/add-listener-from-callback.js"></script>
|
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
callback-exception.html | 10 <script src="script-tests/callback-exception.js"></script>
|
callback-to-deleted-context.html | 10 <script src="script-tests/callback-to-deleted-context.js"></script>
|
callback-to-remote-context.html | 10 <script src="script-tests/callback-to-remote-context.js"></script>
|
callback-to-remote-context2.html | 10 <script src="script-tests/callback-to-remote-context2.js"></script>
|
permission-denied-already-clear-watch-expected.txt | 1 Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.
|
permission-denied-already-error-expected.txt | 1 Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service encounters an error.
|
permission-denied-already-success-expected.txt | 1 Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service has a good position.
|
/external/webkit/LayoutTests/platform/android-v8/storage/ |
sql-error-codes-expected.txt | 1 CONSOLE MESSAGE: line 37: Uncaught Exception thrown in transaction callback.
|
/external/webkit/LayoutTests/storage/ |
close-during-stress-test.html | 4 It actually helps to cause database activity by throwing an exception from a callback.</p>
|
sql-error-codes-expected.txt | 1 CONSOLE MESSAGE: line 0: Exception thrown in transaction callback.
|
/external/webkit/Source/WebCore/bindings/scripts/test/ |
TestObj.idl | 122 // 'Callback' extended attribute 123 void methodWithCallbackArg(in [Callback] TestCallback callback); 124 void methodWithNonCallbackArgAndCallbackArg(in long nonCallback, in [Callback] TestCallback callback); 125 void methodWithCallbackAndOptionalArg(in [Callback, Optional] TestCallback callback); 142 void overloadedMethod(in [Callback] TestCallback callback);
|
/external/webkit/Source/WebCore/dom/ |
xml_expat_tokenizer.cpp | 76 PendingStartElementNSCallback* callback = new PendingStartElementNSCallback; local 78 callback->name = strdup(name); 79 callback->count = 0; 80 while (atts[callback->count]) 81 callback->count++; 82 callback->atts = (XML_Char**)malloc(sizeof(XML_Char*) * (callback->count+1)); 83 for (int i=0; i<callback->count; i++) 84 callback->atts[i] = strdup(atts[i]); 85 callback->atts[callback->count] = NULL; 91 PendingEndElementNSCallback* callback = new PendingEndElementNSCallback; local 97 PendingCharactersCallback* callback = new PendingCharactersCallback; local 106 PendingProcessingInstructionCallback* callback = new PendingProcessingInstructionCallback; local 115 PendingStartCDATABlockCallback* callback = new PendingStartCDATABlockCallback; local 121 PendingEndCDATABlockCallback* callback = new PendingEndCDATABlockCallback; local 127 PendingCommentCallback* callback = new PendingCommentCallback; local 135 PendingErrorCallback* callback = new PendingErrorCallback; local [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
NotificationPresenterImpl.cpp | 54 VoidCallbackClient(PassRefPtr<VoidCallback> callback) 55 : m_callback(callback) 101 void NotificationPresenterImpl::requestPermission(ScriptExecutionContext* context, PassRefPtr<VoidCallback> callback) 103 m_presenter->requestPermission(WebSecurityOrigin(context->securityOrigin()), new VoidCallbackClient(callback));
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
WKCookieManager.cpp | 46 void WKCookieManagerGetHostnamesWithCookies(WKCookieManagerRef cookieManagerRef, void* context, WKCookieManagerGetCookieHostnamesFunction callback) 48 toImpl(cookieManagerRef)->getHostnamesWithCookies(ArrayCallback::create(context, callback)); 66 void WKCookieManagerGetHTTPCookieAcceptPolicy(WKCookieManagerRef cookieManager, void* context, WKCookieManagerGetHTTPCookieAcceptPolicyFunction callback) 68 toImpl(cookieManager)->getHTTPCookieAcceptPolicy(HTTPCookieAcceptPolicyCallback::create(context, callback));
|
/frameworks/base/core/java/android/app/backup/ |
IRestoreObserver.aidl | 22 * Callback class for receiving progress reports during a restore operation. 29 * method is invoked as a callback following the application's use of the 49 * total number provided in the {@link #restoreStarting(int numPackages)} callback. 53 * to the restoreStarting() callback, of the package now being restored.
|
RestoreObserver.java | 23 * Callback class for receiving progress reports during a restore operation. These 29 * method is invoked as a callback following the application's use of the 53 * total number provided in the {@link #restoreStarting(int)} callback. This method 59 * to the {@link #restoreStarting(int)} callback, of the package now being
|
/frameworks/native/libs/binder/ |
AppOpsManager.cpp | 80 const sp<IAppOpsCallback>& callback) { 83 service->startWatchingMode(op, packageName, callback); 87 void AppOpsManager::stopWatchingMode(const sp<IAppOpsCallback>& callback) { 90 service->stopWatchingMode(callback);
|
/frameworks/native/libs/utils/tests/ |
LruCache_test.cpp | 263 TEST_F(LruCacheTest, Callback) { 265 EntryRemovedCallback callback; local 266 cache.setOnEntryRemovedListener(&callback); 273 EXPECT_EQ(1, callback.callbackCount); 274 EXPECT_EQ(1, callback.lastKey); 275 EXPECT_STREQ("one", callback.lastValue); 280 EntryRemovedCallback callback; local 281 cache.setOnEntryRemovedListener(&callback); 288 EXPECT_EQ(3, callback.callbackCount);
|