HomeSort by relevance Sort by last modified time
    Searched full:callback (Results 226 - 250 of 6179) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/DumpRenderTree/chromium/
CppBoundClass.cpp 76 GetterPropertyCallback(CppBoundClass::GetterCallback* callback)
77 : m_callback(callback) { }
230 Callback* callback; local
236 callback = m_fallbackCallback.get();
238 callback = (*method).second;
246 callback->run(cppArguments, &cppResult);
254 PropertyList::const_iterator callback = m_properties.find(ident); local
255 if (callback == m_properties.end()) {
261 if (!callback->second->getValue(&cppValue)
269 PropertyList::iterator callback = m_properties.find(ident); local
323 MethodList::const_iterator callback = m_methods.find(ident); local
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
syslogs_library.cc 28 ReadCompleteCallback* callback);
49 ReadCompleteCallback* callback) {
50 if (callback)
51 callback->Run(Tuple2<LogDictionaryType*, std::string*>(NULL , NULL));
69 ReadCompleteCallback* callback) {
70 // Register the callback request.
72 new CancelableRequest<ReadCompleteCallback>(callback));
76 // callback on the calling thread (e.g. UI) when complete.
120 // Will call the callback on the calling thread.
  /external/chromium/chrome/browser/printing/
printer_query.cc 79 CancelableTask* callback) {
82 if (!StartWorker(callback))
98 CancelableTask* callback) {
99 if (!StartWorker(callback))
108 bool PrinterQuery::StartWorker(CancelableTask* callback) {
117 if (callback) {
118 callback->Cancel();
119 delete callback;
125 callback_.reset(callback);
  /external/chromium/net/spdy/
spdy_http_stream.h 48 CompletionCallback* callback) OVERRIDE;
52 CompletionCallback* callback) OVERRIDE;
54 virtual int ReadResponseHeaders(CompletionCallback* callback) OVERRIDE;
58 CompletionCallback* callback) OVERRIDE;
82 virtual void set_chunk_callback(ChunkCallback* callback) OVERRIDE;
87 // Call the user callback.
92 // Returns true if the callback is invoked.
125 // Is there a scheduled read callback pending.
128 // scheduled read callback.
  /external/webkit/Source/WebCore/fileapi/
DOMFileSystem.h 65 // Schedule a callback. This should not cross threads (should be called on the same context thread).
71 void scheduleCallback(PassRefPtr<CB> callback, PassRefPtr<CBArg> callbackArg)
73 scheduleCallback(scriptExecutionContext(), callback, callbackArg); local
79 // A helper template to schedule a callback task.
83 DispatchCallbackTask(PassRefPtr<CB> callback, PassRefPtr<CBArg> arg)
84 : m_callback(callback)
101 void DOMFileSystem::scheduleCallback(ScriptExecutionContext* scriptExecutionContext, PassRefPtr<CB> callback, PassRefPtr<CBArg> arg)
104 ASSERT(callback);
105 scriptExecutionContext->postTask(new DispatchCallbackTask<CB, CBArg>(callback, arg));
  /external/chromium/chrome/browser/extensions/
extensions_ui.h 95 // Callback for "requestExtensionsData" message.
98 // Callback for "toggleDeveloperMode" message.
101 // Callback for "inspect" message.
104 // Callback for "reload" message.
107 // Callback for "enable" message.
110 // Callback for "enableIncognito" message.
113 // Callback for "allowFileAcces" message.
116 // Callback for "uninstall" message.
119 // Callback for "options" message.
122 // Callback for "showButton" message
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
advanced_options_handler.h 48 // Callback for the "selectDownloadLocation" message. This will prompt
52 // Callback for the "promptForDownloadAction" message. This will set
56 // Callback for the "autoOpenFileTypesResetToDefault" message. This will
60 // Callback for the "metricsReportingCheckboxAction" message. This is called
64 // Callback for the "defaultFontSizeAction" message. This is called if the
69 // Callback for the "Check for server certificate revocation" checkbox. This
74 // Callback for the "Use SSL 3.0" checkbox. This is called if the user toggles
78 // Callback for the "Use TLS 1.0" checkbox. This is called if the user toggles
83 // Callback for the "showNetworkProxySettings" message. This will invoke
89 // Callback for the "showManageSSLCertificates" message. This will invok
    [all...]
  /external/chromium/net/udp/
udp_socket_libevent.h 54 int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
59 int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
66 // alive by the caller until the callback is placed.
70 // |callback| the callback on completion of the Recv.
73 // and |address_length| alive until the callback is called.
77 CompletionCallback* callback);
84 // |callback| is the user callback function to call on complete.
87 // alive until the callback is called
    [all...]
udp_socket_win.h 56 int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
61 int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
68 // alive by the caller until the callback is placed.
72 // |callback| the callback on completion of the Recv.
75 // and |address_length| alive until the callback is called.
79 CompletionCallback* callback);
86 // |callback| is the user callback function to call on complete.
89 // alive until the callback is called
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
SDL_coreaudio.c 95 /* The CoreAudio callback */
135 (*this->spec.callback)(this->spec.userdata,
173 struct AURenderCallbackStruct callback; local
182 /* Remove the input callback */
183 callback.inputProc = 0;
184 callback.inputProcRefCon = 0;
189 &callback,
190 sizeof(callback));
217 struct AURenderCallbackStruct callback; local
266 /* Set the audio callback */
    [all...]
  /external/webkit/Source/WebCore/dom/
ScriptedAnimationController.cpp 58 ScriptedAnimationController::CallbackId ScriptedAnimationController::registerCallback(PassRefPtr<RequestAnimationFrameCallback> callback, Element* animationElement)
61 callback->m_firedOrCancelled = false;
62 callback->m_id = id;
63 callback->m_element = animationElement;
64 m_callbacks.append(callback);
86 // We want to run the callback for all elements in the document that have registered
87 // for a callback and that are visible. Running the callbacks can cause new callbacks
97 // Firing the callback may cause the visibility of other elements to change. To avoid
107 RequestAnimationFrameCallback* callback = callbacks[i].get(); local
108 if (!callback->m_firedOrCancelled && (!callback->m_element || callback->m_element->renderer()))
    [all...]
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 44 /** BT-GATT Server callback structure. */
46 /** Callback invoked in response to register_server */
50 /** Callback indicating that a remote device has connected or been disconnected */
54 /** Callback invoked in response to create_service */
58 /** Callback indicating that an included service has been added to a service */
62 /** Callback invoked when a characteristic has been added to a service */
66 /** Callback invoked when a descriptor has been added to a characteristic */
70 /** Callback invoked in response to start_service */
74 /** Callback invoked in response to stop_service */
78 /** Callback triggered when a service has been deleted *
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepServer.java 44 final Callback mCallback;
55 public interface Callback {
60 public SnepServer(Callback callback) {
61 mCallback = callback;
69 public SnepServer(String serviceName, int serviceSap, Callback callback) {
70 mCallback = callback;
78 public SnepServer(Callback callback, int miu, int rwSize)
    [all...]
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareImpl.java 183 int notificationResponsivenes, int unknownTimer, IGeofenceHardwareCallback callback) {
196 // The callback must be added before addCircularHardwareGeofence is called otherwise the
197 // callback might not be called after the geofence is added in the geofence hardware.
198 // This also means that the callback must be removed if the addCircularHardwareGeofence
201 mGeofences.put(geofenceId, callback);
220 Message m = mReaperHandler.obtainMessage(REAPER_GEOFENCE_ADDED, callback);
317 IGeofenceHardwareMonitorCallback callback) {
319 mReaperHandler.obtainMessage(REAPER_MONITOR_CALLBACK_ADDED, callback);
323 Message m = mCallbacksHandler.obtainMessage(CALLBACK_ADD, callback);
330 IGeofenceHardwareMonitorCallback callback) {
    [all...]
GeofenceHardwareCallback.java 22 * The callback class associated with the APIs in {@link GeofenceHardware}
26 * The callback called when there is a transition to report for the specific
42 * The callback called to notify the success or failure of the add call.
55 * The callback called to notify the success or failure of the remove call.
66 * The callback called to notify the success or failure of the pause call.
77 * The callback called to notify the success or failure of the resume call.
  /external/chromium/chrome/browser/
favicon_service.cc 20 FaviconDataCallback* callback) {
21 GetFaviconRequest* request = new GetFaviconRequest(callback);
36 FaviconService::FaviconDataCallback* callback) {
37 GetFaviconRequest* request = new GetFaviconRequest(callback);
51 FaviconDataCallback* callback) {
52 GetFaviconRequest* request = new GetFaviconRequest(callback);
  /external/chromium/net/http/
http_auth_handler.cc 68 CompletionCallback* callback,
70 // TODO(cbentzel): Enforce non-NULL callback after cleaning up SocketStream.
76 original_callback_ = callback;
94 CompletionCallback* callback = original_callback_; local
96 if (callback)
97 callback->Run(rv);
  /external/clang/test/SemaCXX/
crashes.cpp 48 class callback class in namespace:PR8234
53 class callback<R( ARG_TYPE0)> class in namespace:PR8234
56 callback() {} function in class:PR8234::callback
60 class callback<void( ARG_TYPE0)> class in namespace:PR8234
63 callback() {} function in class:PR8234::callback
68 callback<void(const int&)> op;
  /external/libnl-headers/netlink/
handlers.h 31 * @name Callback Typedefs
36 * nl_recvmsgs() callback for message processing customization
44 * nl_recvmsgs() callback for error message processing customization
56 * Callback actions
69 * Callback kinds
87 * Callback types
  /external/llvm/test/CodeGen/X86/
2012-11-30-regpres-dbg.ll 7 ; CHECK: DEBUG_VALUE: callback
16 %callback = alloca %struct.btCompoundLeafCallback, align 8
23 call void @llvm.dbg.declare(metadata !{%struct.btCompoundLeafCallback* %callback}, metadata !3)
24 %m = getelementptr inbounds %struct.btCompoundLeafCallback* %callback, i64 0, i32 1
41 !3 = metadata !{i32 786688, null, metadata !"callback", null, i32 214, metadata !4, i32 0, i32 0} ; [ DW_TAG_auto_variable ] [callback] [line 214]
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackConstructor.cpp 41 JSCallbackConstructor::JSCallbackConstructor(JSGlobalObject* globalObject, Structure* structure, JSClassRef jsClass, JSObjectCallAsConstructorCallback callback)
44 , m_callback(callback)
63 JSObjectCallAsConstructorCallback callback = static_cast<JSCallbackConstructor*>(constructor)->callback(); local
64 if (callback) {
74 result = callback(ctx, constructorRef, argumentCount, arguments.data(), &exception);
  /external/webkit/Source/WebCore/bindings/js/
JSCallbackData.cpp 47 ASSERT(callback());
51 JSValue function = callback()->get(exec, Identifier(exec, "handleEvent"));
56 callType = callback()->getCallData(callData);
59 function = callback();
70 ? JSMainThreadExecState::call(exec, function, callType, callData, callback(), args)
71 : JSC::call(exec, function, callType, callData, callback(), args);
  /external/webkit/Source/WebCore/inspector/front-end/
DOMStorage.js 52 getEntries: function(callback)
54 DOMStorageAgent.getDOMStorageEntries(this._id, callback);
57 setItem: function(key, value, callback)
59 DOMStorageAgent.setDOMStorageItem(this._id, key, value, callback);
62 removeItem: function(key, callback)
64 DOMStorageAgent.removeDOMStorageItem(this._id, key, callback);
  /external/webkit/Source/WebKit2/UIProcess/
WebResourceCacheManagerProxy.cpp 66 RefPtr<ArrayCallback> callback = prpCallback; local
68 uint64_t callbackID = callback->callbackID();
69 m_arrayCallbacks.set(callbackID, callback.release());
71 // FIXME (Multi-WebProcess): When multi-process is enabled, we need to aggregate the callback data from all processes.
77 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID); local
78 performAPICallbackWithSecurityOriginDataVector(origins, callback.get());
  /external/webkit/Tools/Scripts/webkitpy/common/thread/
messagepump_unittest.py 39 def schedule(self, interval, callback):
40 self.callback = callback
59 delegate.callback()
62 delegate.callback()
73 delegate.callback()

Completed in 917 milliseconds

1 2 3 4 5 6 7 8 91011>>