Searched defs:error_code (Results 1 - 25 of 306) sorted by relevance

1234567891011>>

/external/chromium_org/base/json/
H A Djson_reader.cc68 *error_code_out = parser.error_code();
76 std::string JSONReader::ErrorCodeToString(JsonParseError error_code) {
77 switch (error_code) {
106 JSONReader::JsonParseError JSONReader::error_code() const { function in class:JSONReader
107 return parser_->error_code();
H A Djson_string_value_serializer.cc38 Value* JSONStringValueSerializer::Deserialize(int* error_code, argument
46 error_code, error_str);
H A Djson_file_value_serializer.cc65 const char* JSONFileValueSerializer::GetErrorMessageForCode(int error_code) { argument
66 switch (error_code) {
83 base::Value* JSONFileValueSerializer::Deserialize(int* error_code, argument
88 if (error_code)
89 *error_code = error;
97 return serializer.Deserialize(error_code, error_str);
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dprinter_unittest.cc14 int error_code; local
19 &error_code, &error_msg));
/external/chromium_org/content/child/
H A Dsync_load_response.h22 int error_code; member in struct:content::SyncLoadResponse
/external/chromium_org/content/browser/loader/
H A Dtemporary_file_stream.cc24 base::File::Error error_code,
29 callback.Run(error_code, scoped_ptr<net::FileStream>(), NULL);
46 callback.Run(error_code, file_stream.Pass(), deletable_file.get());
21 DidCreateTemporaryFile( const CreateTemporaryFileStreamCallback& callback, scoped_ptr<base::FileProxy> file_proxy, base::File::Error error_code, const base::FilePath& file_path) argument
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dplugin_error.h27 void SetReport(PP_NaClError error_code, const std::string& message) { argument
28 error_code_ = error_code;
32 PP_NaClError error_code() const { function in class:plugin::ErrorInfo
/external/javasqlite/src/main/java/SQLite/
H A DVm.java19 protected int error_code = 0; field in class:Vm
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DReplyPacket.java37 private short error_code; field in class:ReplyPacket
56 error_code = (short) super.readFromByteArray(p, ERROR_CODE_INDEX,
67 error_code = val;
76 return error_code;
88 super.writeAtByteArray(error_code, res, ERROR_CODE_INDEX,
/external/chromium_org/chrome/test/base/
H A Din_process_browser_test_browsertest.cc43 int error_code,
46 error_code_ = static_cast<net::Error>(error_code);
51 net::Error error_code() const { return error_code_; } function in class:__anon5883::LoadFailObserver
78 EXPECT_EQ(net::ERR_NOT_IMPLEMENTED, observer.error_code());
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.h49 CompileError() : line_number(0), error_code(ERROR_NONE) {}
52 ErrorCode error_code)
53 : line_number(line_number), context(context), error_code(error_code) {}
57 ErrorCode error_code; member in struct:JtlCompiler::CompileError
50 CompileError(size_t line_number, const std::string& context, ErrorCode error_code) argument
/external/chromium_org/chromeos/app_mode/
H A Dkiosk_oem_manifest_parser.cc31 int error_code = JSONFileValueSerializer::JSON_NO_ERROR; local
36 serializer->Deserialize(&error_code, &error_msg));
38 if (error_code != JSONFileValueSerializer::JSON_NO_ERROR ||
/external/chromium_org/cloud_print/common/win/
H A Dcloud_print_utils.cc22 DWORD error_code = GetLastError(); local
23 return error_code ? HRESULT_FROM_WIN32(error_code) : E_FAIL;
/external/chromium_org/content/public/common/
H A Dresource_response.h31 // The response error_code.
32 int error_code; member in struct:content::SyncLoadResult
/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/net/cert/
H A Dtest_root_certs_openssl.cc20 unsigned long error_code = ERR_peek_error(); local
21 if (ERR_GET_LIB(error_code) != ERR_LIB_X509 ||
22 ERR_GET_REASON(error_code) != X509_R_CERT_ALREADY_IN_HASH_TABLE) {
/external/chromium_org/net/ssl/
H A Dopenssl_ssl_util.h44 OpenSSLErrorInfo() : error_code(0), file(NULL), line(0) {}
46 uint32_t error_code; member in struct:net::OpenSSLErrorInfo
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_unicodetext.cc43 int* error_code, int* text_bytes) {
39 DetectLanguageOfUnicodeText( const CompactLangDet::DetectionTables* detection_tables, const UChar* text, bool is_plain_text, bool* is_reliable, int* num_languages, int* error_code, int* text_bytes) argument
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fixtures/
H A Dafter_initialization_fixture.cc18 void CallbackOnError(int channel, int error_code) { argument
20 ": error code " << error_code; local
/external/qemu/target-i386/
H A Dexcp_helper.c48 static int check_exception(CPUX86State *env, int intno, int *error_code) argument
75 *error_code = 0;
92 int intno, int is_int, int error_code,
96 helper_svm_check_intercept_param(env, SVM_EXIT_EXCP_BASE + intno, error_code);
97 intno = check_exception(env, intno, &error_code);
103 env->error_code = error_code;
112 int exception_index, int error_code)
114 raise_interrupt(env, exception_index, 0, error_code, 0);
91 raise_interrupt(CPUX86State *env, int intno, int is_int, int error_code, int next_eip_addend) argument
111 raise_exception_err(CPUX86State *env, int exception_index, int error_code) argument
/external/chromium_org/android_webview/browser/net/
H A Dinput_stream_reader.cc29 int error_code = VerifyRequestedRange(&verified_byte_range, &content_size); local
30 if (error_code != net::OK)
31 return error_code;
33 error_code = SkipToRequestedRange(verified_byte_range);
34 if (error_code != net::OK)
35 return error_code;
/external/chromium_org/chrome/browser/chromeos/geolocation/
H A Dgeoposition.h18 // (Server status is reported in "error_code" field.)
49 int error_code; member in struct:chromeos::Geoposition
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.h63 int error_code() { return error_code_; } function in class:DevToolsProtocol::Response
71 Response(int id, int error_code, const std::string error_message);
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dremovable_storage_provider_win.cc203 DWORD error_code = GetLastError(); local
205 if (error_code != ERROR_NO_MORE_ITEMS) {

Completed in 615 milliseconds

1234567891011>>