Searched defs:error_code (Results 126 - 150 of 306) sorted by last modified time

1234567891011>>

/external/chromium_org/storage/browser/fileapi/
H A Dsandbox_file_system_backend_delegate.cc279 base::File::Error* error_code) const {
281 *error_code = base::File::FILE_ERROR_SECURITY;
617 base::File::Error error_code) {
635 switch (error_code) {
616 CollectOpenFileSystemMetrics( base::File::Error error_code) argument
/external/chromium_org/storage/common/fileapi/
H A Dfile_system_util.cc351 base::File::Error error_code) {
352 switch (error_code) {
350 FileErrorToWebFileError( base::File::Error error_code) argument
/external/chromium_org/sync/engine/net/
H A Dserver_connection_manager.cc59 HttpResponse::ServerConnectionCodeFromNetError(int error_code) { argument
60 switch (error_code) {
/external/chromium_org/sync/internal_api/
H A Dhttp_bridge.cc179 error_code(-1) {}
242 bool HttpBridge::MakeSynchronousPost(int* error_code, int* response_code) { argument
267 *error_code = fetch_state_.error_code;
337 fetch_state_.error_code = net::ERR_ABORTED;
357 fetch_state_.error_code = source->GetStatus().error();
H A Dsyncapi_server_connection_manager.cc51 int error_code = 0; local
53 if (!http->MakeSynchronousPost(&error_code, &response_code)) {
54 DVLOG(1) << "Http POST failed, error returns: " << error_code;
56 error_code);
/external/chromium_org/sync/internal_api/public/
H A Dhttp_bridge.h117 virtual bool MakeSynchronousPost(int* error_code,
202 int error_code; member in struct:syncer::HttpBridge::URLFetchState
211 // appropriate values in |error_code|.
/external/chromium_org/sync/test/fake_server/
H A Dfake_server.cc230 sync_pb::SyncEnums_ErrorType error_code; local
235 error_code = sync_pb::SyncEnums::NOT_MY_BIRTHDAY;
237 error_code = error_type_;
262 error_code = sync_pb::SyncEnums::SUCCESS;
265 response_proto.set_error_code(error_code);
H A Dfake_server_http_post_provider.cc68 void FakeServerHttpPostProvider::OnPostComplete(int error_code, argument
71 post_error_code_ = error_code;
77 bool FakeServerHttpPostProvider::MakeSynchronousPost(int* error_code, argument
88 *error_code = post_error_code_;
90 return *error_code == 0;
/external/chromium_org/content/test/
H A Dtest_render_view_host.cc101 int error_code) {
100 RenderProcessGone(base::TerminationStatus status, int error_code) argument
H A Dtest_web_contents.cc222 int error_code,
225 0, url, error_code, error_description);
220 TestDidFailLoadWithError( const GURL& url, int error_code, const base::string16& error_description) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_device_chromeos.cc86 void RecordPairingResult(BluetoothDevice::ConnectErrorCode error_code) { argument
88 switch (error_code) {
601 ConnectErrorCode error_code = ERROR_UNKNOWN; local
603 error_code = ERROR_FAILED;
605 error_code = ERROR_INPROGRESS;
607 error_code = ERROR_UNSUPPORTED_DEVICE;
611 RecordPairingResult(error_code);
612 error_callback.Run(error_code);
641 ConnectErrorCode error_code = ERROR_UNKNOWN; local
643 error_code
[all...]
H A Dbluetooth_socket_win.cc207 DWORD error_code = WSAGetLastError(); local
208 if (!(status == 0 || error_code == WSAEINPROGRESS)) {
211 << logging::SystemErrorCodeToString(error_code);
213 logging::SystemErrorCodeToString(error_code));
H A Dbluetooth_task_manager_win.cc540 int error_code = local
549 (error_code == WSASERVICE_NOT_FOUND || error_code == WSANO_DATA)) {
550 error_code = DiscoverClassicDeviceServicesWorker(
554 return (error_code == ERROR_SUCCESS);
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dbluetooth_low_energy_event_router.cc1280 BluetoothDevice::ConnectErrorCode error_code) {
1281 VLOG(2) << "Failed to create GATT connection: " << error_code;
1276 OnConnectError( const std::string& extension_id, const std::string& device_address, const ErrorCallback& error_callback, BluetoothDevice::ConnectErrorCode error_code) argument
/external/chromium_org/extensions/browser/
H A Dextension_icon_image_unittest.cc151 int error_code = 0; local
155 static_cast<base::DictionaryValue*>(serializer.Deserialize(&error_code,
157 EXPECT_EQ(0, error_code) << error;
158 if (error_code != 0)
H A Dimage_loader_unittest.cc80 int error_code = 0; local
85 static_cast<base::DictionaryValue*>(serializer.Deserialize(&error_code,
87 EXPECT_EQ(0, error_code) << error;
88 if (error_code != 0)
/external/chromium_org/extensions/browser/guest_view/web_view/
H A Dweb_view_guest.cc689 int error_code,
692 net::ErrorToShortString(error_code));
686 DidFailProvisionalLoad( content::RenderFrameHost* render_frame_host, const GURL& validated_url, int error_code, const base::string16& error_description) argument
/external/chromium_org/extensions/browser/value_store/
H A Dtesting_value_store.h20 void set_error_code(ErrorCode error_code) { error_code_ = error_code; } argument
/external/chromium_org/extensions/common/features/
H A Djson_feature_provider_source.cc24 int error_code = 0; local
27 features_file, base::JSON_PARSE_RFC, &error_code, &error_message));
/external/chromium_org/google_apis/drive/
H A Dbase_requests.cc88 int error_code = -1; local
91 json, base::JSON_PARSE_RFC, &error_code, &error_message));
106 << ", code: " << error_code << ", json:\n" << trimmed_json;
/external/chromium_org/gpu/gles2_conform_support/egl/
H A Degl.cc24 void SetCurrentError(EGLint error_code) { argument
28 T EglError(EGLint error_code, T return_value) { argument
29 SetCurrentError(error_code);
51 EGLint error_code = ValidateDisplay(dpy); local
52 if (error_code != EGL_SUCCESS)
53 return error_code;
63 EGLint error_code = ValidateDisplay(dpy); local
64 if (error_code != EGL_SUCCESS)
65 return error_code;
75 EGLint error_code local
118 EGLint error_code = ValidateDisplay(dpy); local
129 EGLint error_code = ValidateDisplay(dpy); local
152 EGLint error_code = ValidateDisplay(dpy); local
170 EGLint error_code = ValidateDisplay(dpy); local
188 EGLint error_code = ValidateDisplayConfig(dpy, config); local
203 EGLint error_code = ValidateDisplayConfig(dpy, config); local
233 EGLint error_code = ValidateDisplaySurface(dpy, surface); local
300 EGLint error_code = ValidateDisplayConfig(dpy, config); local
320 EGLint error_code = ValidateDisplayContext(dpy, ctx); local
334 EGLint error_code = ValidateDisplaySurface(dpy, draw); local
384 EGLint error_code = ValidateDisplaySurface(dpy, surface); local
[all...]
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_tree.cc462 int error_code = 0; local
466 &error_code,
/external/chromium_org/jingle/glue/
H A Dchannel_socket_adapter.cc114 void TransportChannelSocketAdapter::Close(int error_code) { argument
120 DCHECK(error_code != net::OK);
121 closed_error_code_ = error_code;
130 callback.Run(error_code);
137 callback.Run(error_code);
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_adapter.cc696 cdm::MediaKeyError error_code,
704 switch (error_code) {
695 OnSessionError(uint32_t session_id, cdm::MediaKeyError error_code, uint32_t system_code) argument
/external/chromium_org/mojo/services/network/
H A Durl_loader_impl.cc54 NetworkErrorPtr MakeNetworkError(int error_code) { argument
56 error->code = error_code;
57 error->description = net::ErrorToString(error_code);
301 int error_code,
306 response->error = MakeNetworkError(error_code);
300 SendError( int error_code, const Callback<void(URLResponsePtr)>& callback) argument

Completed in 2810 milliseconds

1234567891011>>