Searched defs:error_code (Results 226 - 250 of 306) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dpreamble_patcher.cc173 SideStepError error_code = RawPatchWithStub(target_function, local
195 if (SIDESTEP_SUCCESS != error_code) { // Testing RawPatchWithStub, above
197 return error_code;
255 SideStepError error_code = RawPatchWithStubAndProtections( local
259 if (SIDESTEP_SUCCESS != error_code) {
261 return error_code;
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dpreamble_patcher.cc173 SideStepError error_code = RawPatchWithStub(target_function, local
195 if (SIDESTEP_SUCCESS != error_code) { // Testing RawPatchWithStub, above
197 return error_code;
255 SideStepError error_code = RawPatchWithStubAndProtections( local
259 if (SIDESTEP_SUCCESS != error_code) {
261 return error_code;
/external/chromium_org/third_party/webrtc/base/
H A Dthread.cc282 int error_code = pthread_create(&thread_, &attr, PreRun, init); local
283 if (0 != error_code) {
284 LOG(LS_ERROR) << "Unable to create pthread, error " << error_code;
/external/libvpx/libvpx/vpx/internal/
H A Dvpx_codec_internal.h483 vpx_codec_err_t error_code; member in struct:vpx_internal_error_info
496 info->error_code = error;
510 longjmp(info->jmp, info->error_code);
/external/sfntly/cpp/src/sfntly/table/core/
H A Dname_table.cc633 UErrorCode error_code = U_ZERO_ERROR; local
635 &error_code);
636 if (U_SUCCESS(error_code)) {
659 UErrorCode error_code = U_ZERO_ERROR; local
660 int32_t length = ucnv_fromUChars(cs, NULL, 0, name, -1, &error_code);
663 error_code = U_ZERO_ERROR;
669 &error_code);
670 if (!U_SUCCESS(error_code)) {
683 UErrorCode error_code = U_ZERO_ERROR; local
693 cs = ucnv_open("utf-8", &error_code);
[all...]
/external/chromium_org/base/
H A Dlogging.cc711 BASE_EXPORT std::string SystemErrorCodeToString(SystemErrorCode error_code) { argument
715 DWORD len = FormatMessageA(flags, NULL, error_code, 0, msgbuf,
720 base::StringPrintf(" (0x%X)", error_code);
723 GetLastError(), error_code);
726 BASE_EXPORT std::string SystemErrorCodeToString(SystemErrorCode error_code) { argument
727 return safe_strerror(error_code);
/external/chromium_org/chrome/browser/chromeos/
H A Dcustomization_document.cc223 int error_code = 0; local
226 base::JSON_ALLOW_TRAILING_COMMAS, &error_code, &error));
227 if (error_code != base::JSONReader::JSON_NO_ERROR)
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Devent_router.cc243 std::string FileErrorToErrorName(base::File::Error error_code) { argument
245 switch (error_code) {
906 void EventRouter::OnVolumeMounted(chromeos::MountError error_code, argument
918 error_code,
922 void EventRouter::OnVolumeUnmounted(chromeos::MountError error_code, argument
927 error_code,
/external/chromium_org/chrome/browser/chromeos/mobile/
H A Dmobile_activator.cc1122 const char* error_code = kErrorDefault; local
1129 error_code = kErrorBadConnectionPartial;
1132 error_code = kErrorBadConnectionActivated;
1134 error_code = kErrorRoamingOnConnection;
1140 error_code = kErrorNoEVDO;
1143 error_code = kErrorRoamingActivation;
1145 error_code = kErrorRoamingPartiallyActivated;
1152 *error = GetErrorMessage(error_code);
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_prefs_browsertest.cc231 int error_code = -1; local
235 json, base::JSON_PARSE_RFC, &error_code, &error_string));
/external/chromium_org/chrome/installer/gcapi/
H A Dgcapi.cc637 DWORD* error_code) {
638 DCHECK(error_code);
641 if (error_code)
642 *error_code = REACTIVATE_ERROR_INVALID_INPUT;
649 if (error_code)
650 *error_code = REACTIVATE_ERROR_NOTDORMANT;
661 if (error_code)
662 *error_code = REACTIVATE_ERROR_NOTINSTALLED;
667 if (error_code)
668 *error_code
635 CanOfferReactivation(const wchar_t* brand_code, int shell_mode, DWORD* error_code) argument
676 ReactivateChrome(const wchar_t* brand_code, int shell_mode, DWORD* error_code) argument
698 CanOfferRelaunch(const wchar_t** partner_brandcode_list, int partner_brandcode_list_length, int shell_mode, DWORD* error_code) argument
773 SetRelaunchOffered(const wchar_t** partner_brandcode_list, int partner_brandcode_list_length, const wchar_t* relaunch_brandcode, int shell_mode, DWORD* error_code) argument
[all...]
/external/chromium_org/content/browser/frame_host/
H A Dinterstitial_page_impl.cc454 int error_code) {
451 RenderViewTerminated( RenderViewHost* render_view_host, base::TerminationStatus status, int error_code) argument
H A Drender_widget_host_view_child_frame.cc162 int error_code) {
160 RenderProcessGone( base::TerminationStatus status, int error_code) argument
H A Drender_widget_host_view_guest.cc169 int error_code) {
170 platform_view_->RenderProcessGone(status, error_code);
167 RenderProcessGone( base::TerminationStatus status, int error_code) argument
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl_unittest.cc165 int error_code) {
166 RenderViewTerminated(GetRenderViewHostForTesting(), status, error_code); local
283 int error_code,
164 TestRenderViewTerminated(base::TerminationStatus status, int error_code) argument
/external/chromium_org/content/child/
H A Dweb_url_loader_impl.cc237 int error_code,
321 sync_load_response->error_code =
625 int error_code,
651 if (error_code != net::OK) {
654 error_code));
704 int error_code = GetInfoFromDataURL(request_.url(), &info, &data); local
706 if (error_code == net::OK) {
712 OnCompletedRequest(error_code, false, false, info.security_info,
873 int error_code = sync_load_response.error_code; local
624 OnCompletedRequest( int error_code, bool was_ignored_by_handler, bool stale_copy_in_cache, const std::string& security_info, const base::TimeTicks& completion_time, int64 total_transfer_size) argument
[all...]
/external/chromium_org/content/test/
H A Dtest_render_view_host.cc101 int error_code) {
100 RenderProcessGone(base::TerminationStatus status, int error_code) argument
/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/net/disk_cache/simple/
H A Dsimple_backend_impl.cc526 int error_code) {
527 if (error_code == net::ERR_FAILED) {
531 callback.Run(error_code);
674 int error_code) {
675 if (error_code != net::OK) {
676 callback.Run(error_code);
704 int error_code) {
705 int final_code = error_code;
524 CheckIterationReturnValue(Entry** entry, const CompletionCallback& callback, int error_code) argument
669 OnEntryOpenedFromHash( uint64 hash, Entry** entry, const scoped_refptr<SimpleEntryImpl>& simple_entry, const CompletionCallback& callback, int error_code) argument
699 OnEntryOpenedFromKey( const std::string key, Entry** entry, const scoped_refptr<SimpleEntryImpl>& simple_entry, const CompletionCallback& callback, int error_code) argument
/external/chromium_org/net/quic/
H A Dquic_framer_test.cc447 QuicErrorCode error_code) {
451 EXPECT_EQ(error_code, framer_.error()) << "len: " << len;
2764 EXPECT_EQ(0x01, visitor_.rst_stream_frame_.error_code);
2828 EXPECT_EQ(0x11, visitor_.connection_close_frame_.error_code);
2887 EXPECT_EQ(0x9, visitor_.goaway_frame_.error_code);
3229 QuicErrorCode error_code = QUIC_INVALID_PACKET_HEADER; local
3236 error_code = QUIC_INVALID_VERSION_NEGOTIATION_PACKET;
3238 CheckProcessingFails(packet, i, expected_error, error_code);
4278 rst_frame.error_code = static_cast<QuicRstStreamErrorCode>(0x05060708);
4334 close_frame.error_code
444 CheckProcessingFails(unsigned char* packet, size_t len, string expected_error, QuicErrorCode error_code) argument
[all...]
H A Dquic_protocol.cc282 QuicRstStreamErrorCode error_code,
284 switch (error_code) {
291 return error_code;
293 return error_code;
298 error_code(QUIC_STREAM_NO_ERROR) {
302 QuicRstStreamErrorCode error_code,
305 error_code(error_code),
307 DCHECK_LE(error_code, numeric_limits<uint8>::max());
311 : error_code(QUIC_NO_ERRO
281 AdjustErrorForVersion( QuicRstStreamErrorCode error_code, QuicVersion version) argument
301 QuicRstStreamFrame(QuicStreamId stream_id, QuicRstStreamErrorCode error_code, QuicStreamOffset bytes_written) argument
522 QuicGoAwayFrame(QuicErrorCode error_code, QuicStreamId last_good_stream_id, const string& reason) argument
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_framer.h417 SpdyError error_code() const { return error_code_; } function in class:net::SpdyFramer
562 static const char* ErrorCodeToString(int error_code);
H A Dspdy_session_unittest.cc1708 int error_code = 0; local
1709 ASSERT_TRUE(entry.GetNetErrorCode(&error_code));
1710 EXPECT_EQ(OK, error_code);
1755 int error_code = 0; local
1756 ASSERT_TRUE(entry.GetNetErrorCode(&error_code));
1757 EXPECT_EQ(ERR_CONNECTION_CLOSED, error_code);
/external/chromium_org/net/tools/balsa/
H A Dbalsa_frame.cc107 BalsaFrameEnums::ParseState error_code) {
108 switch (error_code) {
138 BalsaFrameEnums::ErrorCode error_code) {
139 switch (error_code) {
198 // Note that in the case of a detected warning, error_code will be set
210 // error_code is a valid pointer to a BalsaFrameEnums::ErrorCode value.
217 // error_code may be modified if either a warning or error is detected
227 // ProcessFirstLine(begin, end, is_request, &headers, &error_code);
234 BalsaFrameEnums::ErrorCode* error_code) {
263 *error_code
106 ParseStateToString( BalsaFrameEnums::ParseState error_code) argument
137 ErrorCodeToString( BalsaFrameEnums::ErrorCode error_code) argument
229 ParseHTTPFirstLine(const char* begin, const char* end, bool is_request, size_t max_request_uri_length, BalsaHeaders* headers, BalsaFrameEnums::ErrorCode* error_code) argument
[all...]
/external/chromium_org/storage/browser/fileapi/
H A Dobfuscated_file_util.cc837 base::File::Error* error_code) {
838 base::FilePath origin_dir = GetDirectoryForOrigin(origin, create, error_code);
852 if (error_code)
853 *error_code = error;
973 base::File::Error* error_code) {
975 url.origin(), CallGetTypeStringForURL(url), create, error_code);
1181 const GURL& origin, bool create, base::File::Error* error_code) {
1183 if (error_code) {
1184 *error_code = create ?
1195 if (error_code)
833 GetDirectoryForOriginAndType( const GURL& origin, const std::string& type_string, bool create, base::File::Error* error_code) argument
970 GetDirectoryForURL( const FileSystemURL& url, bool create, base::File::Error* error_code) argument
1180 GetDirectoryForOrigin( const GURL& origin, bool create, base::File::Error* error_code) argument
[all...]

Completed in 6761 milliseconds

1234567891011>>