Searched refs:callbacks (Results 176 - 200 of 336) sorted by relevance

1234567891011>>

/external/chromium_org/gin/modules/
H A Dmodule_registry.cc187 std::vector<LoadModuleCallback> callbacks; local
188 callbacks.reserve(waiting_callbacks_.count(id));
191 callbacks.push_back(it->second);
194 for (std::vector<LoadModuleCallback>::iterator it = callbacks.begin();
195 it != callbacks.end();
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_dispatcher_host.cc112 // DatabaseDispatcherHost, since CloseAll() can invoke callbacks which need to
304 scoped_refptr<IndexedDBCallbacks> callbacks = local
311 callbacks->SetConnectionOpenStartTime(begin_time);
315 IndexedDBPendingConnection connection(callbacks,
608 scoped_refptr<IndexedDBCallbacks> callbacks(new IndexedDBCallbacks(
616 callbacks);
647 scoped_refptr<IndexedDBCallbacks> callbacks(new IndexedDBCallbacks(
687 callbacks,
738 scoped_refptr<IndexedDBCallbacks> callbacks(new IndexedDBCallbacks(
748 callbacks);
[all...]
H A Dindexed_db_factory_impl.h27 scoped_refptr<IndexedDBCallbacks> callbacks,
39 scoped_refptr<IndexedDBCallbacks> callbacks,
/external/chromium_org/content/browser/renderer_host/
H A Dwebsocket_host.cc113 scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks,
122 scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks);
270 scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks,
278 new SSLErrorHandlerDelegate(callbacks.Pass()));
294 scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks)
295 : callbacks_(callbacks.Pass()), weak_ptr_factory_(this) {}
269 OnSSLCertificateError( scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks, const GURL& url, const net::SSLInfo& ssl_info, bool fatal) argument
293 SSLErrorHandlerDelegate( scoped_ptr<net::WebSocketEventInterface::SSLErrorCallbacks> callbacks) argument
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2ft.c118 cf2_builder_moveTo( CF2_OutlineCallbacks callbacks, argument
122 CF2_Outline outline = (CF2_Outline)callbacks;
140 cf2_builder_lineTo( CF2_OutlineCallbacks callbacks, argument
144 CF2_Outline outline = (CF2_Outline)callbacks;
170 cf2_builder_cubeTo( CF2_OutlineCallbacks callbacks, argument
174 CF2_Outline outline = (CF2_Outline)callbacks;
H A Dcf2hints.h187 CF2_OutlineCallbacks callbacks; /* outline consumer */ member in struct:CF2_GlyphPathRec_
249 CF2_OutlineCallbacks callbacks,
/external/freetype/src/cff/
H A Dcf2ft.c120 cf2_builder_moveTo( CF2_OutlineCallbacks callbacks, argument
124 CF2_Outline outline = (CF2_Outline)callbacks;
142 cf2_builder_lineTo( CF2_OutlineCallbacks callbacks, argument
146 CF2_Outline outline = (CF2_Outline)callbacks;
172 cf2_builder_cubeTo( CF2_OutlineCallbacks callbacks, argument
176 CF2_Outline outline = (CF2_Outline)callbacks;
H A Dcf2hints.h187 CF2_OutlineCallbacks callbacks; /* outline consumer */ member in struct:CF2_GlyphPathRec_
251 CF2_OutlineCallbacks callbacks,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2ft.c118 cf2_builder_moveTo( CF2_OutlineCallbacks callbacks, argument
122 CF2_Outline outline = (CF2_Outline)callbacks;
140 cf2_builder_lineTo( CF2_OutlineCallbacks callbacks, argument
144 CF2_Outline outline = (CF2_Outline)callbacks;
170 cf2_builder_cubeTo( CF2_OutlineCallbacks callbacks, argument
174 CF2_Outline outline = (CF2_Outline)callbacks;
H A Dcf2hints.h187 CF2_OutlineCallbacks callbacks; /* outline consumer */ member in struct:CF2_GlyphPathRec_
249 CF2_OutlineCallbacks callbacks,
/external/tremolo/Tremolo/
H A Dvorbisfile.c95 long bytes=(vf->callbacks.read_func)(buffer,1,CHUNKSIZE,vf->datasource);
106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET);
512 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END);
513 vf->offset=vf->end=(vf->callbacks.tell_func)(vf->datasource);
721 long ibytes, ov_callbacks callbacks){
722 int offsettest=(f?callbacks.seek_func(f,0,SEEK_CUR):-1);
732 vf->callbacks = callbacks;
793 if(vf->datasource)(vf->callbacks.close_func)(vf->datasource);
811 ov_callbacks callbacks){
720 _ov_open1(void *f,OggVorbis_File *vf,char *initial, long ibytes, ov_callbacks callbacks) argument
810 ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, ov_callbacks callbacks) argument
818 ov_callbacks callbacks = { local
833 ov_test_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, ov_callbacks callbacks) argument
840 ov_callbacks callbacks = { local
[all...]
/external/chromium_org/dbus/
H A Dbus.cc977 std::vector<GetServiceOwnerCallback>& callbacks = it->second; local
978 for (size_t i = 0; i < callbacks.size(); ++i) {
979 if (callbacks[i].Equals(callback))
982 callbacks.push_back(callback);
1010 std::vector<GetServiceOwnerCallback>& callbacks = it->second;
1011 for (size_t i = 0; i < callbacks.size(); ++i) {
1012 if (callbacks[i].Equals(callback)) {
1013 callbacks.erase(callbacks.begin() + i);
1017 if (!callbacks
1159 const std::vector<GetServiceOwnerCallback>& callbacks = it->second; local
[all...]
/external/libvorbis/lib/
H A Dvorbisfile.c69 if(!(vf->callbacks.read_func))return(-1);
72 long bytes=(vf->callbacks.read_func)(buffer,1,READSIZE,vf->datasource);
83 if(!(vf->callbacks.seek_func)||
84 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET) == -1)
625 if(vf->callbacks.seek_func && vf->callbacks.tell_func){
626 (vf->callbacks.seek_func)(vf->datasource,0,SEEK_END);
627 vf->offset=vf->end=(vf->callbacks.tell_func)(vf->datasource);
873 long ibytes, ov_callbacks callbacks){
874 int offsettest=((f && callbacks
872 _ov_open1(void *f,OggVorbis_File *vf,char *initial, long ibytes, ov_callbacks callbacks) argument
988 ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, ov_callbacks callbacks) argument
996 ov_callbacks callbacks = { local
1050 ov_test_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, ov_callbacks callbacks) argument
1057 ov_callbacks callbacks = { local
[all...]
/external/chromium_org/content/child/
H A Dquota_dispatcher.cc145 blink::WebStorageQuotaCallbacks callbacks) {
146 return new WebStorageQuotaDispatcherCallback(callbacks);
144 CreateWebStorageQuotaCallbacksWrapper( blink::WebStorageQuotaCallbacks callbacks) argument
/external/chromium_org/mojo/public/python/src/
H A Dpython_system_helper.cc79 AsyncWaiterRunnable(PyObject* callable, CallbackMap* callbacks) argument
80 : wait_id_(0), callable_(callable), callbacks_(callbacks) {
/external/chromium_org/mojo/shell/
H A Ddbus_application_loader_linux.cc152 scoped_refptr<LoadCallbacks> callbacks) {
155 ScopedMessagePipeHandle shell_handle = callbacks->RegisterApplication();
150 Load(ApplicationManager* manager, const GURL& url, scoped_refptr<LoadCallbacks> callbacks) argument
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_pixmap.c50 static struct apple_glx_drawable_callbacks callbacks = { variable in typeref:struct:apple_glx_drawable_callbacks
129 if (apple_glx_drawable_create(dpy, screen, pixmap, &d, &callbacks))
H A Dapple_glx_surface.c41 static struct apple_glx_drawable_callbacks callbacks = { variable in typeref:struct:apple_glx_drawable_callbacks
170 if (apple_glx_drawable_create(dpy, screen, drawable, &d, &callbacks))
/external/libvorbis/doc/vorbisfile/
H A DMakefile.am5 doc_DATA = OggVorbis_File.html callbacks.html chaining_example_c.html\
/external/mesa3d/src/glx/apple/
H A Dapple_glx_pixmap.c50 static struct apple_glx_drawable_callbacks callbacks = { variable in typeref:struct:apple_glx_drawable_callbacks
129 if (apple_glx_drawable_create(dpy, screen, pixmap, &d, &callbacks))
H A Dapple_glx_surface.c41 static struct apple_glx_drawable_callbacks callbacks = { variable in typeref:struct:apple_glx_drawable_callbacks
170 if (apple_glx_drawable_create(dpy, screen, drawable, &d, &callbacks))
/external/chromium_org/chrome/browser/chromeos/settings/
H A Ddevice_oauth2_token_service.cc367 std::vector<StatusCallback> callbacks; local
368 callbacks.swap(token_save_callbacks_);
369 for (std::vector<StatusCallback>::iterator callback(callbacks.begin());
370 callback != callbacks.end();
H A Ddevice_settings_service.cc400 std::vector<OwnershipStatusCallback> callbacks; local
401 callbacks.swap(pending_ownership_status_callbacks_);
402 for (std::vector<OwnershipStatusCallback>::iterator iter(callbacks.begin());
403 iter != callbacks.end(); ++iter) {
413 // of the callbacks above are queued up properly.
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8DOMConfiguration.cpp120 void V8DOMConfiguration::installMethods(v8::Handle<v8::ObjectTemplate> prototype, v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) argument
123 installMethod(prototype, signature, attributes, callbacks[i], isolate);
136 const MethodConfiguration* callbacks, size_t callbackCount,
157 installMethods(functionDescriptor->PrototypeTemplate(), defaultSignature, static_cast<v8::PropertyAttribute>(v8::DontDelete), callbacks, callbackCount, isolate);
133 installDOMClassTemplate(v8::Handle<v8::FunctionTemplate> functionDescriptor, const char* interfaceName, v8::Handle<v8::FunctionTemplate> parentClass, size_t fieldCount, const AttributeConfiguration* attributes, size_t attributeCount, const AccessorConfiguration* accessors, size_t accessorCount, const MethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) argument
/external/chromium_org/third_party/libevent/
H A Dhttp-internal.h116 TAILQ_HEAD(httpcbq, evhttp_cb) callbacks; member in struct:evhttp

Completed in 830 milliseconds

1234567891011>>