Searched refs:request_id (Results 1 - 25 of 394) sorted by relevance

1234567891011>>

/external/chromium_org/content/public/browser/
H A Dglobal_request_id.h12 GlobalRequestID() : child_id(-1), request_id(-1) {
15 GlobalRequestID(int child_id, int request_id) argument
17 request_id(request_id) {
24 int request_id; member in struct:content::GlobalRequestID
28 return request_id < other.request_id;
33 request_id == other.request_id;
37 request_id !
[all...]
H A Dspeech_recognition_session_context.cc18 request_id(0) {
H A Dscreen_orientation_dispatcher_host.h20 // Notifies that the lock with the given |request_id| has succeeded.
22 // |request_id| matches the current lock information.
23 virtual void NotifyLockSuccess(int request_id) = 0;
25 // Notifies that the lock with the given |request_id| has failed.
27 // |request_id| matches the current lock information.
28 virtual void NotifyLockError(int request_id,
/external/chromium_org/content/public/renderer/
H A Dcontext_menu_client.h22 virtual void OnMenuAction(int request_id, unsigned action) = 0;
26 virtual void OnMenuClosed(int request_id) = 0;
/external/chromium_org/content/browser/screen_orientation/
H A Dscreen_orientation_dispatcher_host_impl.cc20 int request_id, int process_id, int routing_id)
21 : request_id(request_id),
68 int request_id) {
69 if (!current_lock_ || current_lock_->request_id != request_id)
76 void ScreenOrientationDispatcherHostImpl::NotifyLockSuccess(int request_id) { argument
78 GetRenderFrameHostForRequestID(request_id);
83 render_frame_host->GetRoutingID(), request_id));
88 int request_id, blin
19 LockInformation( int request_id, int process_id, int routing_id) argument
67 GetRenderFrameHostForRequestID( int request_id) argument
87 NotifyLockError( int request_id, blink::WebLockOrientationError error) argument
97 NotifyLockError( int request_id, RenderFrameHost* render_frame_host, blink::WebLockOrientationError error) argument
111 OnLockRequest( RenderFrameHost* render_frame_host, blink::WebScreenOrientationLockType orientation, int request_id) argument
[all...]
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_dispatcher_eventhandler.h19 int request_id,
27 int request_id,
37 int request_id,
42 int request_id,
47 virtual void OnDeviceOpenFailed(int request_id) = 0;
H A Dwebrtc_identity_service.cc14 int request_id,
20 : request_id(request_id),
52 int request_id = next_request_id_++; local
54 RequestInfo request_info(request_id,
65 return request_id;
68 void WebRTCIdentityService::CancelRequest(int request_id) { argument
71 if (it->request_id != request_id)
100 void WebRTCIdentityService::OnIdentityReady(int request_id, argument
13 RequestInfo( int request_id, const GURL& origin, const std::string& identity_name, const std::string& common_name, const SuccessCallback& success_callback, const FailureCallback& failure_callback) argument
114 OnRequestFailed(int request_id, int error) argument
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache_listener.h34 void OnCacheStorageGet(int request_id, const base::string16& cache_name);
35 void OnCacheStorageHas(int request_id, const base::string16& cache_name);
36 void OnCacheStorageCreate(int request_id,
38 void OnCacheStorageDelete(int request_id,
40 void OnCacheStorageKeys(int request_id);
43 void OnCacheMatch(int request_id,
47 void OnCacheMatchAll(int request_id,
51 void OnCacheKeys(int request_id,
55 void OnCacheBatch(int request_id,
67 int request_id,
[all...]
H A Dservice_worker_cache_listener.cc92 int request_id,
101 request_id));
105 int request_id,
114 request_id));
118 int request_id,
127 request_id));
131 int request_id,
140 request_id));
143 void ServiceWorkerCacheListener::OnCacheStorageKeys(int request_id) { argument
150 request_id));
91 OnCacheStorageGet( int request_id, const base::string16& cache_name) argument
104 OnCacheStorageHas( int request_id, const base::string16& cache_name) argument
117 OnCacheStorageCreate( int request_id, const base::string16& cache_name) argument
130 OnCacheStorageDelete( int request_id, const base::string16& cache_name) argument
153 OnCacheMatch( int request_id, int cache_id, const ServiceWorkerFetchRequest& request, const ServiceWorkerCacheQueryParams& match_params) argument
163 OnCacheMatchAll( int request_id, int cache_id, const ServiceWorkerFetchRequest& request, const ServiceWorkerCacheQueryParams& match_params) argument
173 OnCacheKeys( int request_id, int cache_id, const ServiceWorkerFetchRequest& request, const ServiceWorkerCacheQueryParams& match_params) argument
183 OnCacheBatch( int request_id, int cache_id, const std::vector<ServiceWorkerBatchOperation>& operations) argument
200 OnCacheStorageGetCallback( int request_id, const scoped_refptr<ServiceWorkerCache>& cache, ServiceWorkerCacheStorage::CacheStorageError error) argument
214 OnCacheStorageHasCallback( int request_id, bool has_cache, ServiceWorkerCacheStorage::CacheStorageError error) argument
232 OnCacheStorageCreateCallback( int request_id, const scoped_refptr<ServiceWorkerCache>& cache, ServiceWorkerCacheStorage::CacheStorageError error) argument
245 OnCacheStorageDeleteCallback( int request_id, bool deleted, ServiceWorkerCacheStorage::CacheStorageError error) argument
258 OnCacheStorageKeysCallback( int request_id, const std::vector<std::string>& strings, ServiceWorkerCacheStorage::CacheStorageError error) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Drequest_manager.cc70 const int request_id = it->first; local
72 RejectRequest(request_id,
85 int request_id = next_id_++; local
88 if (requests_.find(request_id) != requests_.end())
93 request_id,
99 requests_[request_id] = request;
100 ResetTimer(request_id);
102 FOR_EACH_OBSERVER(Observer, observers_, OnRequestCreated(request_id, type));
108 if (!request->handler->Execute(request_id)) {
109 DestroyRequest(request_id);
118 FulfillRequest(int request_id, scoped_ptr<RequestValue> response, bool has_more) argument
143 RejectRequest(int request_id, scoped_ptr<RequestValue> response, base::File::Error error) argument
190 OnRequestTimeout(int request_id) argument
207 OnUnresponsiveNotificationResult( int request_id, NotificationManagerInterface::NotificationResult result) argument
224 ResetTimer(int request_id) argument
237 DestroyRequest(int request_id) argument
[all...]
H A Drequest_manager.h60 virtual bool Execute(int request_id) = 0;
65 virtual void OnSuccess(int request_id,
72 virtual void OnError(int request_id,
83 virtual void OnRequestCreated(int request_id, RequestType type) = 0;
86 virtual void OnRequestDestroyed(int request_id) = 0;
89 virtual void OnRequestExecuted(int request_id) = 0;
92 virtual void OnRequestFulfilled(int request_id,
97 virtual void OnRequestRejected(int request_id,
102 virtual void OnRequestTimeouted(int request_id) = 0;
113 // Handles successful response for the |request_id|
[all...]
H A Drequest_manager_unittest.cc80 explicit ExecuteEvent(int request_id) : request_id_(request_id) {} argument
83 int request_id() { return request_id_; } function in class:chromeos::file_system_provider::__anon3217::EventLogger::ExecuteEvent
91 SuccessEvent(int request_id, scoped_ptr<RequestValue> result, bool has_more) argument
92 : request_id_(request_id),
97 int request_id() { return request_id_; } function in class:chromeos::file_system_provider::__anon3217::EventLogger::SuccessEvent
109 ErrorEvent(int request_id, argument
112 : request_id_(request_id), result_(result.Pass()), error_(error) {}
115 int request_id() { return request_id_; } function in class:chromeos::file_system_provider::__anon3217::EventLogger::ErrorEvent
128 void OnExecute(int request_id) { argument
132 OnSuccess(int request_id, scoped_ptr<RequestValue> result, bool has_more) argument
139 OnError(int request_id, scoped_ptr<RequestValue> result, base::File::Error error) argument
208 Event(int request_id) argument
210 int request_id() const { return request_id_; } function in class:chromeos::file_system_provider::__anon3217::RequestObserver::Event
218 CreatedEvent(int request_id, RequestType type) argument
230 FulfilledEvent(int request_id, bool has_more) argument
242 RejectedEvent(int request_id, base::File::Error error) argument
329 const int request_id = request_manager_->CreateRequest( local
355 const int request_id = request_manager_->CreateRequest( local
433 const int request_id = request_manager_->CreateRequest( local
510 const int request_id = request_manager_->CreateRequest( local
572 const int request_id = request_manager_->CreateRequest( local
618 const int request_id = request_manager_->CreateRequest( local
676 int request_id; local
727 const int request_id = request_manager_->CreateRequest( local
772 const int request_id = request_manager_->CreateRequest( local
[all...]
H A Dprovided_file_system.cc66 const int request_id = request_manager_.CreateRequest( local
70 if (!request_id) {
76 &ProvidedFileSystem::Abort, weak_ptr_factory_.GetWeakPtr(), request_id);
83 const int request_id = request_manager_.CreateRequest( local
87 if (!request_id) {
94 &ProvidedFileSystem::Abort, weak_ptr_factory_.GetWeakPtr(), request_id);
100 const int request_id = request_manager_.CreateRequest( local
105 if (!request_id) {
113 &ProvidedFileSystem::Abort, weak_ptr_factory_.GetWeakPtr(), request_id);
124 const int request_id local
149 const int request_id = request_manager_.CreateRequest( local
165 const int request_id = request_manager_.CreateRequest( local
182 const int request_id = request_manager_.CreateRequest( local
203 const int request_id = request_manager_.CreateRequest( local
219 const int request_id = request_manager_.CreateRequest( local
236 const int request_id = request_manager_.CreateRequest( local
263 const int request_id = request_manager_.CreateRequest( local
286 const int request_id = request_manager_.CreateRequest( local
307 const int request_id = request_manager_.CreateRequest( local
[all...]
/external/chromium_org/content/renderer/service_worker/
H A Dservice_worker_script_context.h47 void DidHandleActivateEvent(int request_id,
49 void DidHandleInstallEvent(int request_id,
51 void DidHandleFetchEvent(int request_id,
54 void DidHandleSyncEvent(int request_id);
78 void OnActivateEvent(int request_id);
79 void OnInstallEvent(int request_id, int active_version_id);
80 void OnFetchEvent(int request_id, const ServiceWorkerFetchRequest& request);
81 void OnSyncEvent(int request_id);
82 void OnPushEvent(int request_id, const std::string& data);
87 int request_id, cons
[all...]
H A Dservice_worker_cache_storage_dispatcher.cc287 int request_id,
291 CacheStorageWithCacheCallbacks* callbacks = get_callbacks_.Lookup(request_id);
293 get_callbacks_.Remove(request_id);
297 int request_id) {
298 CacheStorageCallbacks* callbacks = has_callbacks_.Lookup(request_id);
300 has_callbacks_.Remove(request_id);
304 int request_id,
309 create_callbacks_.Lookup(request_id);
311 create_callbacks_.Remove(request_id);
315 int request_id) {
286 OnCacheStorageGetSuccess( int request_id, int cache_id) argument
296 OnCacheStorageHasSuccess( int request_id) argument
303 OnCacheStorageCreateSuccess( int request_id, int cache_id) argument
314 OnCacheStorageDeleteSuccess( int request_id) argument
321 OnCacheStorageKeysSuccess( int request_id, const std::vector<base::string16>& keys) argument
333 OnCacheStorageGetError( int request_id, blink::WebServiceWorkerCacheError reason) argument
342 OnCacheStorageHasError( int request_id, blink::WebServiceWorkerCacheError reason) argument
350 OnCacheStorageCreateError( int request_id, blink::WebServiceWorkerCacheError reason) argument
359 OnCacheStorageDeleteError( int request_id, blink::WebServiceWorkerCacheError reason) argument
367 OnCacheStorageKeysError( int request_id, blink::WebServiceWorkerCacheError reason) argument
375 OnCacheMatchSuccess( int request_id, const ServiceWorkerResponse& response) argument
387 OnCacheMatchAllSuccess( int request_id, const std::vector<ServiceWorkerResponse>& responses) argument
399 OnCacheKeysSuccess( int request_id, const std::vector<ServiceWorkerFetchRequest>& requests) argument
412 OnCacheBatchSuccess( int request_id, const std::vector<ServiceWorkerResponse>& responses) argument
424 OnCacheMatchError( int request_id, blink::WebServiceWorkerCacheError reason) argument
433 OnCacheMatchAllError( int request_id, blink::WebServiceWorkerCacheError reason) argument
442 OnCacheKeysError( int request_id, blink::WebServiceWorkerCacheError reason) argument
451 OnCacheBatchError( int request_id, blink::WebServiceWorkerCacheError reason) argument
463 int request_id = get_callbacks_.Add(callbacks); local
471 int request_id = has_callbacks_.Add(callbacks); local
479 int request_id = create_callbacks_.Add(callbacks); local
487 int request_id = delete_callbacks_.Add(callbacks); local
494 int request_id = keys_callbacks_.Add(callbacks); local
504 int request_id = cache_match_callbacks_.Add(callbacks); local
517 int request_id = cache_match_all_callbacks_.Add(callbacks); local
530 int request_id = cache_keys_callbacks_.Add(callbacks); local
544 int request_id = cache_batch_callbacks_.Add(callbacks); local
[all...]
H A Dservice_worker_cache_storage_dispatcher.h41 void OnCacheStorageGetSuccess(int request_id, int cache_id);
42 void OnCacheStorageHasSuccess(int request_id);
43 void OnCacheStorageCreateSuccess(int request_id, int cache_id);
44 void OnCacheStorageDeleteSuccess(int request_id);
45 void OnCacheStorageKeysSuccess(int request_id,
48 void OnCacheStorageGetError(int request_id,
50 void OnCacheStorageHasError(int request_id,
52 void OnCacheStorageCreateError(int request_id,
54 void OnCacheStorageDeleteError(int request_id,
56 void OnCacheStorageKeysError(int request_id,
[all...]
/external/chromium_org/components/password_manager/content/renderer/
H A Dcredential_manager_client_browsertest.cc42 // |request_id| param to its value. If no request ID can be found, the method
43 // returns false, and the |request_id| is set to -1.
46 bool ExtractRequestId(uint32 message_id, int& request_id) { argument
47 request_id = -1;
56 request_id = param.a;
63 request_id = param.a;
70 request_id = param.a;
77 request_id = param.a;
85 return request_id != -1;
148 int request_id; local
165 int request_id; local
182 int request_id; local
199 int request_id; local
[all...]
H A Dcredential_manager_client.cc64 void CredentialManagerClient::OnAcknowledgeFailedSignIn(int request_id) { argument
65 RespondToNotificationCallback(request_id, &failed_sign_in_callbacks_);
68 void CredentialManagerClient::OnAcknowledgeSignedIn(int request_id) { argument
69 RespondToNotificationCallback(request_id, &signed_in_callbacks_);
72 void CredentialManagerClient::OnAcknowledgeSignedOut(int request_id) { argument
73 RespondToNotificationCallback(request_id, &signed_out_callbacks_);
76 void CredentialManagerClient::OnSendCredential(int request_id, argument
78 RequestCallbacks* callbacks = request_callbacks_.Lookup(request_id);
83 request_callbacks_.Remove(request_id);
92 int request_id local
102 int request_id = signed_in_callbacks_.Add(callbacks); local
111 int request_id = signed_out_callbacks_.Add(callbacks); local
119 int request_id = request_callbacks_.Add(callbacks); local
127 RespondToNotificationCallback( int request_id, CredentialManagerClient::NotificationCallbacksMap* map) argument
[all...]
/external/chromium_org/content/child/fileapi/
H A Dfile_system_dispatcher.cc95 int request_id) {
96 snapshot_callback_.Run(file_info, platform_path, request_id);
142 int request_id = iter.GetCurrentKey(); local
146 dispatchers_.Remove(request_id);
172 int request_id = dispatchers_.Add( local
175 request_id, origin_url, type));
182 int request_id = dispatchers_.Add( local
185 request_id, filesystem_url));
191 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
193 request_id, origin_ur
92 DidCreateSnapshotFile( const base::File::Info& file_info, const base::FilePath& platform_path, int request_id) argument
200 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
209 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
218 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
227 int request_id = dispatchers_.Add( local
237 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
248 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
257 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
266 int request_id = dispatchers_.Add( local
277 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
292 int request_id = dispatchers_.Add( local
304 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
314 int request_id = dispatchers_.Add(CallbackDispatcher::Create(callback)); local
324 int request_id = dispatchers_.Add( local
331 OnDidOpenFileSystem(int request_id, const std::string& name, const GURL& root) argument
341 OnDidResolveURL(int request_id, const storage::FileSystemInfo& info, const base::FilePath& file_path, bool is_directory) argument
352 OnDidSucceed(int request_id) argument
359 OnDidReadMetadata( int request_id, const base::File::Info& file_info) argument
367 OnDidCreateSnapshotFile( int request_id, const base::File::Info& file_info, const base::FilePath& platform_path) argument
376 OnDidReadDirectory( int request_id, const std::vector<storage::DirectoryEntry>& entries, bool has_more) argument
387 OnDidFail( int request_id, base::File::Error error_code) argument
395 OnDidWrite( int request_id, int64 bytes, bool complete) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_icon_source.h82 // Encapsulates the request parameters for |request_id|.
95 // associated with the |request_id|.
96 void FinalizeImage(const SkBitmap* image, int request_id);
98 // Loads the default image for |request_id| and returns to the client.
99 void LoadDefaultImage(int request_id);
101 // Loads the extension's |icon| for the given |request_id| and returns the
104 int request_id);
106 // Loads the favicon image for the app associated with the |request_id|. If
108 void LoadFaviconImage(int request_id);
112 int request_id,
[all...]
/external/chromium_org/content/public/common/
H A Dstorage_quota_params.h20 request_id(-1),
26 int request_id; member in struct:content::StorageQuotaParams
/external/chromium_org/content/renderer/screen_orientation/
H A Dscreen_orientation_dispatcher.cc34 void ScreenOrientationDispatcher::OnLockSuccess(int request_id) { argument
36 pending_callbacks_.Lookup(request_id);
40 pending_callbacks_.Remove(request_id);
44 int request_id, blink::WebLockOrientationError error) {
46 pending_callbacks_.Lookup(request_id);
50 pending_callbacks_.Remove(request_id);
66 int request_id = pending_callbacks_.Add(callback); local
68 routing_id(), orientation, request_id));
43 OnLockError( int request_id, blink::WebLockOrientationError error) argument
/external/chromium_org/content/renderer/
H A Dspeech_recognition_dispatcher.h47 void OnRecognitionStarted(int request_id);
48 void OnAudioStarted(int request_id);
49 void OnSoundStarted(int request_id);
50 void OnSoundEnded(int request_id);
51 void OnAudioEnded(int request_id);
52 void OnErrorOccurred(int request_id, const SpeechRecognitionError& error);
53 void OnRecognitionEnded(int request_id);
54 void OnResultsRetrieved(int request_id,
H A Dnotification_permission_dispatcher.cc25 int request_id = pending_requests_.Add(callback); local
27 routing_id(), GURL(origin.toString()), request_id));
43 int request_id, blink::WebNotificationPermission result) {
45 pending_requests_.Lookup(request_id);
49 pending_requests_.Remove(request_id);
42 OnPermissionRequestComplete( int request_id, blink::WebNotificationPermission result) argument
/external/chromium_org/content/browser/fileapi/
H A Dfileapi_message_filter.cc204 void FileAPIMessageFilter::OnOpenFileSystem(int request_id, argument
216 &FileAPIMessageFilter::DidOpenFileSystem, this, request_id));
220 int request_id,
224 if (!ValidateFileSystemURL(request_id, url))
227 Send(new FileSystemMsg_DidFail(request_id,
233 &FileAPIMessageFilter::DidResolveURL, this, request_id));
236 void FileAPIMessageFilter::OnDeleteFileSystem(int request_id, argument
241 &FileAPIMessageFilter::DidDeleteFileSystem, this, request_id));
245 int request_id, const GURL& src_path, const GURL& dest_path) {
249 if (!ValidateFileSystemURL(request_id, src_ur
219 OnResolveURL( int request_id, const GURL& filesystem_url) argument
244 OnMove( int request_id, const GURL& src_path, const GURL& dest_path) argument
268 OnCopy( int request_id, const GURL& src_path, const GURL& dest_path) argument
292 OnRemove( int request_id, const GURL& path, bool recursive) argument
309 OnReadMetadata( int request_id, const GURL& path) argument
325 OnCreate( int request_id, const GURL& path, bool exclusive, bool is_directory, bool recursive) argument
349 OnExists( int request_id, const GURL& path, bool is_directory) argument
372 OnReadDirectory( int request_id, const GURL& path) argument
389 OnWrite( int request_id, const GURL& path, const std::string& blob_uuid, int64 offset) argument
418 OnTruncate( int request_id, const GURL& path, int64 length) argument
436 OnTouchFile( int request_id, const GURL& path, const base::Time& last_access_time, const base::Time& last_modified_time) argument
456 OnCancel( int request_id, int request_id_to_cancel) argument
480 OnCreateSnapshotFile( int request_id, const GURL& path) argument
510 OnDidReceiveSnapshotFile(int request_id) argument
692 DidFinish(int request_id, base::File::Error result) argument
701 DidGetMetadata( int request_id, base::File::Error result, const base::File::Info& info) argument
712 DidGetMetadataForStreaming( int request_id, base::File::Error result, const base::File::Info& info) argument
727 DidReadDirectory( int request_id, base::File::Error result, const std::vector<storage::DirectoryEntry>& entries, bool has_more) argument
743 DidWrite(int request_id, base::File::Error result, int64 bytes, bool complete) argument
757 DidOpenFileSystem(int request_id, const GURL& root, const std::string& filesystem_name, base::File::Error result) argument
772 DidResolveURL( int request_id, base::File::Error result, const storage::FileSystemInfo& info, const base::FilePath& file_path, storage::FileSystemContext::ResolvedEntryType type) argument
796 DidDeleteFileSystem( int request_id, base::File::Error result) argument
807 DidCreateSnapshot( int request_id, const storage::FileSystemURL& url, base::File::Error result, const base::File::Info& info, const base::FilePath& platform_path, const scoped_refptr<storage::ShareableFileReference>& ) argument
856 ValidateFileSystemURL( int request_id, const storage::FileSystemURL& url) argument
[all...]

Completed in 523 milliseconds

1234567891011>>