Searched defs:request_id (Results 51 - 75 of 199) sorted by relevance

12345678

/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...]
H A Dscreen_orientation_provider_android.cc19 int request_id, blink::WebScreenOrientationLockType lock)
20 : request_id(request_id), lock(lock) {}
47 int request_id,
57 request_id,
66 dispatcher_->NotifyLockError(request_id,
85 dispatcher_->NotifyLockSuccess(request_id);
89 pending_lock_ = new LockInformation(request_id, lock_orientation);
106 dispatcher_->NotifyLockSuccess(pending_lock_->request_id);
18 LockInformation( int request_id, blink::WebScreenOrientationLockType lock) argument
46 LockOrientation( int request_id, blink::WebScreenOrientationLockType lock_orientation) argument
/external/chromium_org/content/child/service_worker/
H A Dservice_worker_message_filter.cc83 int request_id,
81 OnStaleRegistered( int thread_id, int request_id, const ServiceWorkerRegistrationObjectInfo& info, const ServiceWorkerVersionAttributes& attrs) argument
/external/chromium_org/content/renderer/manifest/
H A Dmanifest_manager.cc46 void ManifestManager::OnRequestManifest(int request_id) { argument
48 base::Unretained(this), request_id));
52 int request_id, const Manifest& manifest) {
70 routing_id(), request_id, ipc_manifest));
51 OnRequestManifestComplete( int request_id, const Manifest& manifest) argument
/external/chromium_org/content/renderer/media/
H A Dmock_media_stream_dispatcher.cc31 int request_id,
37 audio_input_request_id_ = request_id;
39 stream_label_ = "local_stream" + base::IntToString(request_id);
53 int request_id,
55 EXPECT_EQ(request_id, audio_input_request_id_);
59 int request_id,
64 audio_input_request_id_ = request_id;
69 audio_output_request_id_ = request_id;
73 video_request_id_ = request_id;
30 GenerateStream( int request_id, const base::WeakPtr<MediaStreamDispatcherEventHandler>& event_handler, const StreamOptions& components, const GURL& url) argument
52 CancelGenerateStream( int request_id, const base::WeakPtr<MediaStreamDispatcherEventHandler>& event_handler) argument
58 EnumerateDevices( int request_id, const base::WeakPtr<MediaStreamDispatcherEventHandler>& event_handler, MediaStreamType type, const GURL& security_origin) argument
H A Duser_media_client_impl.h73 int request_id,
78 int request_id,
83 int request_id,
86 int request_id,
89 virtual void OnDeviceOpenFailed(int request_id) OVERRIDE;
134 UserMediaRequestInfo(int request_id,
138 int request_id; member in class:content::UserMediaClientImpl::UserMediaRequestInfo
217 UserMediaRequestInfo* FindUserMediaRequestInfo(int request_id);
223 MediaDevicesRequestInfo* FindMediaDevicesRequestInfo(int request_id);
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/renderer/pepper/
H A Dpepper_platform_video_capture.cc101 void PepperPlatformVideoCapture::OnDeviceOpened(int request_id, argument
/external/chromium_org/extensions/browser/guest_view/web_view/
H A Dweb_view_permission_helper_delegate.h61 int request_id,
58 FileSystemAccessedAsync( int render_process_id, int render_frame_id, int request_id, const GURL& url, bool blocked_by_policy) argument
/external/chromium_org/ipc/
H A Dipc_sync_message.cc70 bool SyncMessage::IsMessageReplyTo(const Message& msg, int request_id) { argument
74 return GetMessageId(msg) == request_id;
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Drouter.cc87 uint64_t request_id = next_request_id_++; local
88 if (request_id == 0)
89 request_id = next_request_id_++;
91 message->set_request_id(request_id);
96 responders_[request_id] = responder;
119 uint64_t request_id = message->request_id(); local
120 ResponderMap::iterator it = responders_.find(request_id);
/external/chromium_org/mojo/public/cpp/bindings/
H A Dmessage.h45 // Access the request_id field (if present).
47 uint64_t request_id() const { function in class:mojo::Message
50 &data_->header)->request_id;
52 void set_request_id(uint64_t request_id) { argument
55 request_id = request_id;
/external/chromium_org/chrome/browser/bitmap_fetcher/
H A Dbitmap_fetcher_service.cc22 BitmapFetcherRequest(BitmapFetcherService::RequestId request_id,
27 BitmapFetcherService::RequestId request_id() const { return request_id_; } function in class:BitmapFetcherRequest
42 BitmapFetcherService::RequestId request_id,
44 : request_id_(request_id), observer_(observer) {
68 void BitmapFetcherService::CancelRequest(int request_id) { argument
71 if ((*iter)->request_id() == request_id) {
86 int request_id = current_request_id_; local
88 new BitmapFetcherRequest(request_id, observer));
113 return requests_.back()->request_id();
41 BitmapFetcherRequest( BitmapFetcherService::RequestId request_id, BitmapFetcherService::Observer* observer) argument
[all...]
H A Dbitmap_fetcher_service_unittest.cc25 virtual void OnImageChanged(BitmapFetcherService::RequestId request_id,
110 BitmapFetcherService::RequestId request_id = local
112 EXPECT_EQ(invalid_request_id, request_id);
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dprovided_file_system_unittest.cc124 int request_id = 0; local
125 EXPECT_TRUE(event_args->GetInteger(1, &request_id));
126 EXPECT_EQ(kExpectedRequestId, request_id);
136 request_id, response.Pass(), false /* has_more */);
163 int request_id = 0; local
164 EXPECT_TRUE(event_args->GetInteger(1, &request_id));
165 EXPECT_EQ(kExpectedRequestId, request_id);
171 request_id, base::File::FILE_ERROR_NOT_FOUND);
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...]
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dsafe_media_metadata_parser.cc85 int64 request_id, int64 byte_start, int64 length) {
91 request_id, byte_start, length));
95 int64 request_id, int64 byte_start, int64 length) {
100 &SafeMediaMetadataParser::OnBlobReaderDoneOnUIThread, this, request_id));
106 int64 request_id, scoped_ptr<std::string> data,
113 request_id, base::Passed(data.Pass())));
117 int64 request_id, scoped_ptr<std::string> data) {
122 request_id, *data));
84 OnUtilityProcessRequestBlobBytes( int64 request_id, int64 byte_start, int64 length) argument
94 StartBlobReaderOnUIThread( int64 request_id, int64 byte_start, int64 length) argument
105 OnBlobReaderDoneOnUIThread( int64 request_id, scoped_ptr<std::string> data, int64 ) argument
116 FinishRequestBlobBytes( int64 request_id, scoped_ptr<std::string> data) argument
/external/chromium_org/chrome/browser/ui/android/
H A Dssl_client_certificate_request.cc107 jlong request_id = reinterpret_cast<intptr_t>(request.get()); local
112 request_id,
135 // |request_id| is the id passed to
146 jlong request_id,
153 reinterpret_cast<chrome::SelectCertificateCallback*>(request_id));
143 OnSystemRequestCompletion( JNIEnv* env, jclass clazz, jlong request_id, jobjectArray encoded_chain_ref, jobject private_key_ref) argument
/external/chromium_org/chrome/browser/ui/find_bar/
H A Dfind_tab_helper.cc147 void FindTabHelper::HandleFindReply(int request_id, argument
156 if (!find_op_aborted_ && request_id == current_find_request_id_) {
171 request_id, number_of_matches, selection, active_match_ordinal,
/external/chromium_org/chrome/browser/ui/webui/
H A Dsync_internals_message_handler.cc136 int request_id = 0; local
137 bool success = args->GetInteger(0, &request_id);
144 weak_ptr_factory_.GetWeakPtr(), request_id));
149 int request_id,
151 base::FundamentalValue id(request_id);
148 OnReceivedAllNodes( int request_id, scoped_ptr<base::ListValue> nodes) argument
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_flash_menu_host.cc174 void PepperFlashMenuHost::OnMenuAction(int request_id, unsigned action) { argument
181 void PepperFlashMenuHost::OnMenuClosed(int request_id) { argument
/external/chromium_org/chrome/utility/media_galleries/
H A Dipc_data_source.cc82 int64 request_id = ++next_request_id_; local
88 pending_requests_[request_id] = request;
90 request_id, position, clamped_size));
93 void IPCDataSource::OnRequestBlobBytesFinished(int64 request_id, argument
96 std::map<int64, Request>::iterator it = pending_requests_.find(request_id);
/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...]
/external/chromium_org/content/browser/renderer_host/media/
H A Ddevice_request_message_filter.cc34 DeviceRequest(int request_id, argument
38 : request_id(request_id),
45 int request_id; member in struct:content::DeviceRequestMessageFilter::DeviceRequest
97 Send(new MediaStreamMsg_GetSourcesACK(request_it->request_id, all_devices));
124 void DeviceRequestMessageFilter::OnGetSources(int request_id, argument
145 request_id, security_origin, audio_label, video_label));
/external/chromium_org/content/child/
H A Dquota_dispatcher.cc114 int request_id = quota_message_filter_->GenerateRequestID(CurrentWorkerId()); local
115 pending_quota_callbacks_.AddWithID(callback, request_id);
117 request_id, origin_url, type));
128 int request_id = quota_message_filter_->GenerateRequestID(CurrentWorkerId()); local
129 pending_quota_callbacks_.AddWithID(callback, request_id);
133 params.request_id = request_id;
150 int request_id,
153 Callback* callback = pending_quota_callbacks_.Lookup(request_id);
156 pending_quota_callbacks_.Remove(request_id);
149 DidGrantStorageQuota( int request_id, int64 current_usage, int64 granted_quota) argument
159 DidQueryStorageUsageAndQuota( int request_id, int64 current_usage, int64 current_quota) argument
169 DidFail( int request_id, QuotaStatusCode error) argument
[all...]

Completed in 741 milliseconds

12345678