/external/chromium_org/content/child/indexed_db/ |
indexed_db_dispatcher_unittest.cc | 56 MockCallbacks callbacks; local 65 &callbacks, 69 EXPECT_TRUE(callbacks.error_seen());
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
ObjectCache.java | 42 * @param callbacks Callback object that that will return a new instance of the object, and 45 public ObjectCache(Callback<T> callbacks, int maxSize) { 46 mCallback = callbacks;
|
/external/chromium/chrome/common/ |
worker_thread_ticker.h | 18 // thread is hung. Similarly, the callbacks will be called on a separate 51 // Stops the ticker and waits for all callbacks. to be done. This method 52 // does not provide a way to stop without waiting for the callbacks to be 82 // The interval at which the callbacks are to be invoked
|
/external/chromium_org/chrome/browser/component_updater/pnacl/ |
pnacl_updater_observer.h | 13 // Monitors the component updater service, so that the callbacks registered
|
/external/chromium_org/chrome/browser/extensions/api/top_sites/ |
top_sites_api.h | 29 // For callbacks may be run after destruction.
|
/external/chromium_org/chrome/common/ |
worker_thread_ticker.h | 17 // thread is hung. Similarly, the callbacks will be called on a separate 50 // Stops the ticker and waits for all callbacks. to be done. This method 51 // does not provide a way to stop without waiting for the callbacks to be 81 // The interval at which the callbacks are to be invoked
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
app_custom_bindings.js | 50 var callback = callbacks[callbackId]; 51 delete callbacks[callbackId]; 63 var callbacks = {}; 68 callbacks[callbackId] = callback;
|
/external/chromium_org/media/audio/ |
simple_sources_unittest.cc | 30 EXPECT_EQ(1, source.callbacks()); 60 EXPECT_EQ(1, source.callbacks()); 62 EXPECT_EQ(2, source.callbacks()); 66 EXPECT_EQ(3, source.callbacks());
|
/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/ |
ppapi_start.h | 13 * Start PPAPI using the given set of callbacks to invoke the application code.
|
/external/chromium_org/remoting/host/setup/ |
native_messaging_reader.h | 37 // EOF or error is encountered. This method is asynchronous - the callbacks 39 // for these callbacks to be invoked right up until this object is destroyed. 47 // callbacks on the caller thread, and have them safely dropped if the reader 57 // Caller-supplied message and end-of-file callbacks.
|
/external/chromium_org/remoting/host/win/ |
wts_terminal_observer.h | 14 // Provides callbacks for monitoring events on a WTS terminal.
|
/external/chromium_org/third_party/WebKit/Source/modules/quota/ |
WebStorageQuotaCallbacksImpl.h | 49 OwnPtr<WebStorageQuotaCallbacksImpl> callbacks = adoptPtr(new WebStorageQuotaCallbacksImpl(success, error)); local 50 return callbacks.leakPtr(); 55 OwnPtr<WebStorageQuotaCallbacksImpl> callbacks = adoptPtr(new WebStorageQuotaCallbacksImpl(success, error)); local 56 return callbacks.leakPtr();
|
/external/chromium_org/third_party/libxml/src/ |
testSAX.c | 63 static int callbacks = 0; variable 258 callbacks++; 276 callbacks++; 294 callbacks++; 311 callbacks++; 335 callbacks++; 366 callbacks++; 401 callbacks++; 420 callbacks++; 451 callbacks++ [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/ |
package.html | 13 callbacks for when a {@link com.jme3.scene.Spatial} is rendered or updated
|
/external/libselinux/src/ |
callbacks.h | 2 * This file describes the callbacks passed to selinux_init() and available
|
/frameworks/wilhelm/src/android/ |
CallbackProtector.h | 48 * return immediately if there are no callbacks, and will block until current callbacks exit. 53 * Similar to requestCbExitAndWait, but does not wait for current callbacks to exit. 63 /** Counts the number of callbacks actively locking the associated AudioPlayer */
|
/packages/apps/Mms/src/com/android/mms/util/ |
BackgroundLoaderManager.java | 40 * thread). Callbacks will be invoked on the thread where the ThumbnailManager 57 * these, just add new callbacks. 117 Set<ItemLoadedCallback> callbacks = mCallbacks.get(uri); local 118 if (callbacks == null) { 119 callbacks = new HashSet<ItemLoadedCallback>(4); 120 mCallbacks.put(uri, callbacks); 122 callbacks.add(callback); 131 final Set<ItemLoadedCallback> callbacks = mCallbacks.get(uri); local 132 callbacks.remove(callback);
|
/ndk/docs/text/ |
NATIVE-ACTIVITY.text | 28 activity. Because the main thread of your application handles the callbacks, your callback 36 native_activity.h interface. It spawns another thread to handle things such as callbacks or 37 input events. This prevents any callbacks from blocking your main thread and adds some 38 flexibility in how you implement the callbacks, so you might find this programming model a bit 53 callbacks in an event loop in another thread. See the native-activity sample application for more 98 ANativeActivity->callbacks to the implementations of your callbacks. 105 6. Implement the rest of the callbacks that you set in ANativeActivity->callbacks. For more 106 information on when the callbacks are called, see the SDK documentation for Activit [all...] |
/external/android-clat/ |
netlink_msg.h | 25 void send_netlink_msg(struct nl_msg *msg, struct nl_cb *callbacks); 26 void send_ifaddrmsg(uint16_t type, uint16_t flags, struct ifaddrmsg *ifa, struct nl_cb *callbacks);
|
/external/chromium/chrome/browser/search_engines/ |
template_url_fetcher.h | 36 // is added to the TemplateURLModel. Takes ownership of |callbacks|. 40 TemplateURLFetcherCallbacks* callbacks,
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8DOMConfiguration.cpp | 51 void V8DOMConfiguration::batchConfigureCallbacks(v8::Handle<v8::ObjectTemplate> prototype, v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const BatchedMethod* callbacks, size_t callbackCount, v8::Isolate*, WrapperWorldType currentWorldType) 54 v8::FunctionCallback callback = callbacks[i].callback; 55 if (currentWorldType == MainWorld && callbacks[i].callbackForMainWorld) 56 callback = callbacks[i].callbackForMainWorld; 57 prototype->Set(v8::String::NewSymbol(callbacks[i].name), v8::FunctionTemplate::New(callback, v8Undefined(), signature, callbacks[i].length), attributes); 62 size_t fieldCount, const BatchedAttribute* attributes, size_t attributeCount, const BatchedMethod* callbacks, size_t callbackCount, v8::Isolate* isolate, WrapperWorldType currentWorldType) 80 batchConfigureCallbacks(functionDescriptor->PrototypeTemplate(), defaultSignature, static_cast<v8::PropertyAttribute>(v8::DontDelete), callbacks, callbackCount, isolate, currentWorldType);
|
/external/chromium_org/tools/json_schema_compiler/test/ |
callbacks_unittest.cc | 5 #include "tools/json_schema_compiler/test/callbacks.h" 9 using namespace test::api::callbacks;
|
/frameworks/base/core/java/android/view/ |
CollapsibleActionView.java | 22 * When a {@link View} implements this interface it will receive callbacks 24 * app-specified callbacks to {@link OnActionExpandListener}.
|
/frameworks/base/media/mca/effect/java/android/media/effect/ |
EffectUpdateListener.java | 21 * Some effects may issue callbacks to inform the host of changes to the effect state. This is the 22 * listener interface for receiving those callbacks.
|
/libcore/luni/src/test/java/tests/api/javax/security/auth/ |
CallbackHandlerTest.java | 32 * javax.security.auth.callback.CallbackHandler#handle(Callback[] callbacks) 43 public void handle(Callback[] callbacks) {
|