Searched refs:callbacks (Results 26 - 50 of 336) sorted by relevance

1234567891011>>

/external/deqp/framework/platform/android/
H A DtcuAndroidNativeActivity.cpp120 activity->callbacks->onStart = onStartCallback;
121 activity->callbacks->onResume = onResumeCallback;
122 activity->callbacks->onSaveInstanceState = onSaveInstanceStateCallback;
123 activity->callbacks->onPause = onPauseCallback;
124 activity->callbacks->onStop = onStopCallback;
125 activity->callbacks->onDestroy = onDestroyCallback;
126 activity->callbacks->onWindowFocusChanged = onWindowFocusChangedCallback;
127 activity->callbacks->onNativeWindowCreated = onNativeWindowCreatedCallback;
128 activity->callbacks->onNativeWindowResized = onNativeWindowResizedCallback;
129 activity->callbacks
[all...]
/external/smack/src/org/apache/harmony/javax/security/auth/callback/
H A DCallbackHandler.java44 * @param callbacks
52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; argument
/external/chromium_org/content/renderer/service_worker/
H A Dservice_worker_cache_storage_dispatcher.cc185 virtual void dispatchMatch(CacheMatchCallbacks* callbacks, argument
190 dispatcher_->dispatchMatchForCache(cache_id_, callbacks, request,
193 virtual void dispatchMatchAll(CacheWithResponsesCallbacks* callbacks, argument
198 dispatcher_->dispatchMatchAllForCache(cache_id_, callbacks, request,
201 virtual void dispatchKeys(CacheWithRequestsCallbacks* callbacks, argument
206 dispatcher_->dispatchKeysForCache(cache_id_, callbacks, request,
210 CacheWithResponsesCallbacks* callbacks,
214 dispatcher_->dispatchBatchForCache(cache_id_, callbacks, batch_operations);
291 CacheStorageWithCacheCallbacks* callbacks = get_callbacks_.Lookup(request_id); local
292 callbacks
209 dispatchBatch( CacheWithResponsesCallbacks* callbacks, const blink::WebVector<BatchOperation>& batch_operations) argument
298 CacheStorageCallbacks* callbacks = has_callbacks_.Lookup(request_id); local
308 CacheStorageWithCacheCallbacks* callbacks = local
316 CacheStorageCallbacks* callbacks = delete_callbacks_.Lookup(request_id); local
324 CacheStorageKeysCallbacks* callbacks = keys_callbacks_.Lookup(request_id); local
336 CacheStorageWithCacheCallbacks* callbacks = local
345 CacheStorageCallbacks* callbacks = has_callbacks_.Lookup(request_id); local
353 CacheStorageWithCacheCallbacks* callbacks = local
362 CacheStorageCallbacks* callbacks = delete_callbacks_.Lookup(request_id); local
370 CacheStorageKeysCallbacks* callbacks = keys_callbacks_.Lookup(request_id); local
378 blink::WebServiceWorkerCache::CacheMatchCallbacks* callbacks = local
390 blink::WebServiceWorkerCache::CacheWithResponsesCallbacks* callbacks = local
403 blink::WebServiceWorkerCache::CacheWithRequestsCallbacks* callbacks = local
415 blink::WebServiceWorkerCache::CacheWithResponsesCallbacks* callbacks = local
427 blink::WebServiceWorkerCache::CacheMatchCallbacks* callbacks = local
436 blink::WebServiceWorkerCache::CacheWithResponsesCallbacks* callbacks = local
445 blink::WebServiceWorkerCache::CacheWithRequestsCallbacks* callbacks = local
454 blink::WebServiceWorkerCache::CacheWithResponsesCallbacks* callbacks = local
460 dispatchGet( CacheStorageWithCacheCallbacks* callbacks, const blink::WebString& cacheName) argument
468 dispatchHas( CacheStorageCallbacks* callbacks, const blink::WebString& cacheName) argument
476 dispatchCreate( CacheStorageWithCacheCallbacks* callbacks, const blink::WebString& cacheName) argument
484 dispatchDelete( CacheStorageCallbacks* callbacks, const blink::WebString& cacheName) argument
492 dispatchKeys( CacheStorageKeysCallbacks* callbacks) argument
499 dispatchMatchForCache( int cache_id, blink::WebServiceWorkerCache::CacheMatchCallbacks* callbacks, const blink::WebServiceWorkerRequest& request, const blink::WebServiceWorkerCache::QueryParams& query_params) argument
512 dispatchMatchAllForCache( int cache_id, blink::WebServiceWorkerCache::CacheWithResponsesCallbacks* callbacks, const blink::WebServiceWorkerRequest& request, const blink::WebServiceWorkerCache::QueryParams& query_params) argument
525 dispatchKeysForCache( int cache_id, blink::WebServiceWorkerCache::CacheWithRequestsCallbacks* callbacks, const blink::WebServiceWorkerRequest* request, const blink::WebServiceWorkerCache::QueryParams& query_params) argument
539 dispatchBatchForCache( int cache_id, blink::WebServiceWorkerCache::CacheWithResponsesCallbacks* callbacks, const blink::WebVector< blink::WebServiceWorkerCache::BatchOperation>& web_operations) argument
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_cursor.h30 void Advance(uint32 count, scoped_refptr<IndexedDBCallbacks> callbacks);
33 scoped_refptr<IndexedDBCallbacks> callbacks);
35 scoped_refptr<IndexedDBCallbacks> callbacks);
48 scoped_refptr<IndexedDBCallbacks> callbacks,
51 scoped_refptr<IndexedDBCallbacks> callbacks,
55 scoped_refptr<IndexedDBCallbacks> callbacks,
H A Dindexed_db_cursor.cc38 scoped_refptr<IndexedDBCallbacks> callbacks) {
47 callbacks));
51 scoped_refptr<IndexedDBCallbacks> callbacks) {
57 &IndexedDBCursor::CursorAdvanceOperation, this, count, callbacks));
62 scoped_refptr<IndexedDBCallbacks> callbacks,
71 callbacks->OnSuccess(static_cast<IndexedDBValue*>(NULL));
75 callbacks->OnSuccess(key(), primary_key(), Value());
81 scoped_refptr<IndexedDBCallbacks> callbacks,
93 callbacks->OnSuccess(static_cast<IndexedDBValue*>(NULL));
97 callbacks
36 Continue(scoped_ptr<IndexedDBKey> key, scoped_ptr<IndexedDBKey> primary_key, scoped_refptr<IndexedDBCallbacks> callbacks) argument
50 Advance(uint32 count, scoped_refptr<IndexedDBCallbacks> callbacks) argument
60 CursorAdvanceOperation( uint32 count, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* ) argument
78 CursorIterationOperation( scoped_ptr<IndexedDBKey> key, scoped_ptr<IndexedDBKey> primary_key, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* ) argument
100 PrefetchContinue( int number_to_fetch, scoped_refptr<IndexedDBCallbacks> callbacks) argument
113 CursorPrefetchIterationOperation( int number_to_fetch, scoped_refptr<IndexedDBCallbacks> callbacks, IndexedDBTransaction* ) argument
[all...]
H A Dindexed_db_connection.cc11 scoped_refptr<IndexedDBDatabaseCallbacks> callbacks)
12 : database_(database), callbacks_(callbacks) {}
9 IndexedDBConnection( scoped_refptr<IndexedDBDatabase> database, scoped_refptr<IndexedDBDatabaseCallbacks> callbacks) argument
H A Dindexed_db_connection.h19 scoped_refptr<IndexedDBDatabaseCallbacks> callbacks);
30 IndexedDBDatabaseCallbacks* callbacks() { return callbacks_.get(); } function in class:content::IndexedDBConnection
/external/chromium_org/media/audio/
H A Dfake_audio_consumer_unittest.cc57 void TimeCallbacksOnAudioThread(int callbacks) { argument
60 if (source_.callbacks() == 0) {
65 // Keep going until we've seen the requested number of callbacks.
66 if (source_.callbacks() < callbacks) {
69 base::Unretained(this), callbacks), time_between_callbacks_ / 2);
72 EndTest(callbacks);
76 void EndTest(int callbacks) { argument
79 EXPECT_LE(callbacks, source_.callbacks());
[all...]
/external/chromium_org/components/password_manager/content/renderer/
H A Dcredential_manager_client.cc78 RequestCallbacks* callbacks = request_callbacks_.Lookup(request_id); local
79 DCHECK(callbacks);
82 callbacks->onSuccess(&credential);
91 blink::WebCredentialManagerClient::NotificationCallbacks* callbacks) {
92 int request_id = failed_sign_in_callbacks_.Add(callbacks);
101 blink::WebCredentialManagerClient::NotificationCallbacks* callbacks) {
102 int request_id = signed_in_callbacks_.Add(callbacks);
110 NotificationCallbacks* callbacks) {
111 int request_id = signed_out_callbacks_.Add(callbacks);
118 RequestCallbacks* callbacks) {
89 dispatchFailedSignIn( const blink::WebCredential& credential, blink::WebCredentialManagerClient::NotificationCallbacks* callbacks) argument
99 dispatchSignedIn( const blink::WebCredential& credential, blink::WebCredentialManagerClient::NotificationCallbacks* callbacks) argument
109 dispatchSignedOut( NotificationCallbacks* callbacks) argument
115 dispatchRequest( bool zeroClickOnly, const blink::WebVector<blink::WebURL>& federations, RequestCallbacks* callbacks) argument
130 blink::WebCredentialManagerClient::NotificationCallbacks* callbacks = local
[all...]
H A Dcredential_manager_client.h66 WebCredentialManagerClient::NotificationCallbacks* callbacks) OVERRIDE;
69 WebCredentialManagerClient::NotificationCallbacks* callbacks) OVERRIDE;
70 virtual void dispatchSignedOut(NotificationCallbacks* callbacks) OVERRIDE;
74 RequestCallbacks* callbacks) OVERRIDE;
/external/ppp/pppd/
H A Dfsm.c69 #define PROTO_NAME(f) ((f)->callbacks->proto_name)
138 if( f->callbacks->starting )
139 (*f->callbacks->starting)(f);
156 if( f->callbacks->down )
157 (*f->callbacks->down)(f);
177 if( f->callbacks->starting )
178 (*f->callbacks->starting)(f);
217 else if( f->callbacks->down )
218 (*f->callbacks->down)(f); /* Inform upper layers we're down */
232 if( f->callbacks
[all...]
/external/smack/src/org/apache/qpid/management/common/sasl/
H A DUsernameHashedPasswordCallbackHandler.java45 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException argument
47 for (int i = 0; i < callbacks.length; i++)
49 if (callbacks[i] instanceof NameCallback)
51 NameCallback ncb = (NameCallback) callbacks[i];
54 else if (callbacks[i] instanceof PasswordCallback)
56 PasswordCallback pcb = (PasswordCallback) callbacks[i];
61 throw new UnsupportedCallbackException(callbacks[i]);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DLocalFileSystem.cpp53 void reportFailure(ExecutionContext*, PassOwnPtr<AsyncFileSystemCallbacks> callbacks, FileError::ErrorCode error) argument
55 callbacks->didFail(error);
87 void LocalFileSystem::resolveURL(ExecutionContext* context, const KURL& fileSystemURL, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
90 CallbackWrapper* wrapper = new CallbackWrapper(callbacks);
96 void LocalFileSystem::requestFileSystem(ExecutionContext* context, FileSystemType type, long long size, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
99 CallbackWrapper* wrapper = new CallbackWrapper(callbacks);
105 void LocalFileSystem::deleteFileSystem(ExecutionContext* context, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
111 CallbackWrapper* wrapper = new CallbackWrapper(callbacks);
144 CallbackWrapper* callbacks)
146 context->postTask(createCrossThreadTask(&reportFailure, callbacks
142 fileSystemNotAvailable( PassRefPtrWillBeRawPtr<ExecutionContext> context, CallbackWrapper* callbacks) argument
149 fileSystemNotAllowedInternal( PassRefPtrWillBeRawPtr<ExecutionContext> context, CallbackWrapper* callbacks) argument
156 fileSystemAllowedInternal( PassRefPtrWillBeRawPtr<ExecutionContext> context, FileSystemType type, CallbackWrapper* callbacks) argument
170 resolveURLInternal( PassRefPtrWillBeRawPtr<ExecutionContext> context, const KURL& fileSystemURL, CallbackWrapper* callbacks) argument
182 deleteFileSystemInternal( PassRefPtrWillBeRawPtr<ExecutionContext> context, FileSystemType type, CallbackWrapper* callbacks) argument
[all...]
/external/android-clat/
H A Dnetlink_msg.c123 * sends a netlink message, reads a response, and hands the response(s) to the callbacks
125 * callbacks - callbacks to use on responses
127 void send_netlink_msg(struct nl_msg *msg, struct nl_cb *callbacks) { argument
143 nl_recvmsgs(nl_sk, callbacks);
151 * sends a netlink/ifaddrmsg message and hands the responses to the callbacks
155 * callbacks - callbacks to use with the responses
157 void send_ifaddrmsg(uint16_t type, uint16_t flags, struct ifaddrmsg *ifa, struct nl_cb *callbacks) { argument
164 send_netlink_msg(msg, callbacks);
174 struct nl_cb *callbacks = NULL; local
[all...]
H A Dgetaddr.c101 struct nl_cb *callbacks = NULL; local
115 callbacks = nl_cb_alloc(NL_CB_DEFAULT);
116 if(!callbacks) {
119 nl_cb_set(callbacks, NL_CB_VALID, NL_CB_CUSTOM, getaddr_cb, &targ);
120 nl_cb_err(callbacks, NL_CB_CUSTOM, error_handler, &targ);
123 send_ifaddrmsg(RTM_GETADDR, NLM_F_REQUEST | NLM_F_ROOT, &ifa, callbacks);
135 if(callbacks)
136 nl_cb_put(callbacks);
H A Dnetlink_msg.h25 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_org/content/child/indexed_db/
H A Dindexed_db_dispatcher.cc58 // Clear any pending callbacks - which may result in dispatch requests -
181 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr);
183 int32 ipc_callbacks_id = pending_callbacks_.Add(callbacks.release());
197 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr);
199 int32 ipc_callbacks_id = pending_callbacks_.Add(callbacks.release());
208 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr);
210 int32 ipc_callbacks_id = pending_callbacks_.Add(callbacks.release());
229 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr);
235 params.ipc_callbacks_id = pending_callbacks_.Add(callbacks.release());
248 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_pt
308 RequestIDBDatabaseGet( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, bool key_only, WebIDBCallbacks* callbacks) argument
328 RequestIDBDatabasePut( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const WebData& value, const blink::WebVector<WebBlobInfo>& web_blob_info, const IndexedDBKey& key, blink::WebIDBPutMode put_mode, WebIDBCallbacks* callbacks, const WebVector<long long>& index_ids, const WebVector<WebVector<WebIDBKey> >& index_keys) argument
392 RequestIDBDatabaseOpenCursor( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, blink::WebIDBCursorDirection direction, bool key_only, blink::WebIDBTaskType task_type, WebIDBCallbacks* callbacks) argument
420 RequestIDBDatabaseCount( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
438 RequestIDBDatabaseDeleteRange( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
485 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
508 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
520 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
558 WebIDBCallbacks* callbacks = local
574 WebIDBCallbacks* callbacks = local
593 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
603 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
627 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
692 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
702 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
710 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(p.ipc_callbacks_id); local
731 WebIDBCallbacks* callbacks = pending_callbacks_.Lookup(ipc_callbacks_id); local
748 WebIDBDatabaseCallbacks* callbacks = local
762 WebIDBDatabaseCallbacks* callbacks = local
772 WebIDBDatabaseCallbacks* callbacks = local
784 WebIDBDatabaseCallbacks* callbacks = local
[all...]
H A Dwebidbfactory_impl.h27 virtual void getDatabaseNames(blink::WebIDBCallbacks* callbacks,
32 blink::WebIDBCallbacks* callbacks,
36 blink::WebIDBCallbacks* callbacks,
H A Dwebidbcursor_impl.cc32 // It's not possible for there to be pending callbacks that address this
51 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr);
53 CachedAdvance(count, callbacks.get());
58 count, callbacks.release(), ipc_cursor_id_, transaction_id_);
71 scoped_ptr<WebIDBCallbacks> callbacks(callbacks_ptr);
80 CachedContinue(callbacks.get());
88 prefetch_amount_, callbacks.release(), ipc_cursor_id_);
104 callbacks.release(),
137 WebIDBCallbacks* callbacks) {
152 CachedContinue(callbacks);
136 CachedAdvance(unsigned long count, WebIDBCallbacks* callbacks) argument
155 CachedContinue(WebIDBCallbacks* callbacks) argument
[all...]
/external/chromium_org/mojo/application_manager/
H A Dbackground_shell_application_loader_unittest.cc21 scoped_refptr<LoadCallbacks> callbacks) OVERRIDE {
51 scoped_refptr<ApplicationLoader::SimpleLoadCallbacks> callbacks(
53 loader.Load(NULL, GURL(), callbacks);
/external/chromium_org/third_party/WebKit/Source/web/
H A DLocalFileSystemClient.cpp67 void LocalFileSystemClient::requestFileSystemAccessAsync(ExecutionContext* context, PassOwnPtr<PermissionCallbacks> callbacks) argument
78 callbacks->onAllowed();
81 webFrame->permissionClient()->requestFileSystemAccessAsync(callbacks);
/external/chromium_org/content/child/service_worker/
H A Dweb_service_worker_provider_impl.cc85 WebServiceWorkerRegistrationCallbacks* callbacks) {
87 provider_id_, pattern, script_url, callbacks);
92 WebServiceWorkerUnregistrationCallbacks* callbacks) {
94 provider_id_, pattern, callbacks);
99 WebServiceWorkerRegistrationCallbacks* callbacks) {
100 GetDispatcher()->GetRegistration(provider_id_, document_url, callbacks);
82 registerServiceWorker( const WebURL& pattern, const WebURL& script_url, WebServiceWorkerRegistrationCallbacks* callbacks) argument
90 unregisterServiceWorker( const WebURL& pattern, WebServiceWorkerUnregistrationCallbacks* callbacks) argument
97 getRegistration( const blink::WebURL& document_url, WebServiceWorkerRegistrationCallbacks* callbacks) argument
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt.c64 static bt_status_t btif_gatt_init( const btgatt_callbacks_t* callbacks )
66 bt_gatt_callbacks = callbacks;
/external/chromium_org/content/child/fileapi/
H A Dwebfilesystem_impl.cc132 void DidSucceed(WebFileSystemCallbacks* callbacks) { argument
133 callbacks->didSucceed();
137 WebFileSystemCallbacks* callbacks) {
140 callbacks->didReadMetadata(web_file_info);
145 WebFileSystemCallbacks* callbacks) {
152 callbacks->didReadDirectory(file_system_entries, has_more);
156 WebFileSystemCallbacks* callbacks) {
157 callbacks->didOpenFileSystem(name, root);
165 WebFileSystemCallbacks* callbacks) {
166 callbacks
136 DidReadMetadata(const base::File::Info& file_info, WebFileSystemCallbacks* callbacks) argument
143 DidReadDirectory(const std::vector<storage::DirectoryEntry>& entries, bool has_more, WebFileSystemCallbacks* callbacks) argument
155 DidOpenFileSystem(const base::string16& name, const GURL& root, WebFileSystemCallbacks* callbacks) argument
160 DidResolveURL(const base::string16& name, const GURL& root_url, storage::FileSystemType mount_type, const base::string16& file_path, bool is_directory, WebFileSystemCallbacks* callbacks) argument
174 DidFail(base::File::Error error, WebFileSystemCallbacks* callbacks) argument
405 openFileSystem( const blink::WebURL& storage_partition, blink::WebFileSystemType type, WebFileSystemCallbacks callbacks) argument
428 resolveURL( const blink::WebURL& filesystem_url, WebFileSystemCallbacks callbacks) argument
445 deleteFileSystem( const blink::WebURL& storage_partition, blink::WebFileSystemType type, WebFileSystemCallbacks callbacks) argument
464 move( const blink::WebURL& src_path, const blink::WebURL& dest_path, WebFileSystemCallbacks callbacks) argument
480 copy( const blink::WebURL& src_path, const blink::WebURL& dest_path, WebFileSystemCallbacks callbacks) argument
496 remove( const blink::WebURL& path, WebFileSystemCallbacks callbacks) argument
511 removeRecursively( const blink::WebURL& path, WebFileSystemCallbacks callbacks) argument
526 readMetadata( const blink::WebURL& path, WebFileSystemCallbacks callbacks) argument
543 createFile( const blink::WebURL& path, bool exclusive, WebFileSystemCallbacks callbacks) argument
559 createDirectory( const blink::WebURL& path, bool exclusive, WebFileSystemCallbacks callbacks) argument
575 fileExists( const blink::WebURL& path, WebFileSystemCallbacks callbacks) argument
590 directoryExists( const blink::WebURL& path, WebFileSystemCallbacks callbacks) argument
605 readDirectory( const blink::WebURL& path, WebFileSystemCallbacks callbacks) argument
623 createFileWriter( const WebURL& path, blink::WebFileWriterClient* client, WebFileSystemCallbacks callbacks) argument
642 createSnapshotFileAndReadMetadata( const blink::WebURL& path, WebFileSystemCallbacks callbacks) argument
670 RegisterCallbacks( const WebFileSystemCallbacks& callbacks) argument
694 MaybeCreateWaitableResults( const WebFileSystemCallbacks& callbacks, int callbacks_id) argument
[all...]
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dapp_custom_bindings.js50 var callback = callbacks[callbackId];
51 delete callbacks[callbackId];
63 var callbacks = {};
68 callbacks[callbackId] = callback;

Completed in 1007 milliseconds

1234567891011>>