/external/autotest/site_utils/rpm_control_system/ |
rpm_client.py | 51 error_msg = ('Failed to change outlet status for host: %s to ' 53 logging.error(error_msg) 54 raise RemotePowerException(error_msg)
|
/external/toybox/toys/other/ |
switch_root.c | 57 error_msg("not ramfs"); 65 error_msg("bad newroot '%s'", newroot); 77 error_msg("bad init");
|
factor.c | 32 error_msg("%s: not integer", err);
|
/system/tools/aidl/ |
type_namespace.h | 133 const AidlType& type, std::string* error_msg) const = 0; 185 const AidlType& type, std::string* error_msg) const override; 383 const AidlType& aidl_type, std::string* error_msg) const { 388 *error_msg = "unknown type"; 394 *error_msg = "void type cannot be an array"; 399 *error_msg = "void type cannot be annotated"; 408 *error_msg = StringPrintf("Type cannot be marked as both %s and %s.", 423 *error_msg = StringPrintf("type '%s' may not be annotated as %s.", 436 *error_msg = StringPrintf( 444 *error_msg = "type cannot be marshalled" [all...] |
/art/runtime/arch/arm/ |
instruction_set_features_arm.h | 29 std::string* error_msg); 76 std::string* error_msg) const OVERRIDE;
|
/art/runtime/arch/arm64/ |
instruction_set_features_arm64.h | 29 std::string* error_msg); 75 std::string* error_msg) const OVERRIDE;
|
instruction_set_features_arm64.cc | 28 const std::string& variant, std::string* error_msg) { 47 *error_msg = os.str(); 134 const bool smp, const std::vector<std::string>& features, std::string* error_msg) const { 143 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
|
/art/runtime/arch/mips/ |
instruction_set_features_mips.h | 29 std::string* error_msg); 80 std::string* error_msg) const OVERRIDE;
|
/art/runtime/arch/mips64/ |
instruction_set_features_mips64.h | 29 std::string* error_msg); 64 std::string* error_msg) const OVERRIDE;
|
/art/runtime/ |
oat_file_assistant.h | 136 // Returns false on error, in which case error_msg will contain more 139 // The 'error_msg' argument must not be null. 145 bool Lock(std::string* error_msg); 171 // If the result is not kUpdateSucceeded, the value of error_msg will be set 173 // attempted. error_msg must not be null. 175 std::string* error_msg); 259 // If the result is not kUpdateSucceeded, the value of error_msg will be set 261 // attempted. error_msg must not be null. 262 ResultOfAttemptToUpdate RelocateOatFile(const std::string* input_file, std::string* error_msg); 268 // If the result is not kUpdateSucceeded, the value of error_msg will be se [all...] |
dex_file.cc | 72 bool DexFile::GetChecksum(const char* filename, uint32_t* checksum, std::string* error_msg) { 88 ScopedFd fd(OpenAndReadMagic(file_part, &magic, error_msg)); 90 DCHECK(!error_msg->empty()); 95 ZipArchive::OpenFromFd(fd.release(), filename, error_msg)); 97 *error_msg = StringPrintf("Failed to open zip archive '%s' (error msg: %s)", file_part, 98 error_msg->c_str()); 101 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(zip_entry_name, error_msg)); 103 *error_msg = StringPrintf("Zip archive '%s' doesn't contain %s (error msg: %s)", file_part, 104 zip_entry_name, error_msg->c_str()); 112 DexFile::OpenFile(fd.release(), filename, false, error_msg)); 151 std::string error_msg; local 162 std::string error_msg; local [all...] |
oat_file_manager.cc | 433 std::string* error_msg /*out*/) const { 435 DCHECK(error_msg != nullptr); 521 *error_msg = 566 std::string error_msg; local 567 if (!oat_file_assistant.Lock(/*out*/&error_msg)) { 570 VLOG(class_linker) << "OatFileAssistant::Lock: " << error_msg; 578 switch (oat_file_assistant.MakeUpToDate(filter_, /*out*/ &error_msg)) { 580 LOG(WARNING) << error_msg; 586 VLOG(oat) << error_msg; 601 !HasCollisions(oat_file.get(), class_loader, dex_elements, /*out*/ &error_msg); [all...] |
/external/libdrm/freedreno/ |
freedreno_pipe.c | 42 ERROR_MSG("invalid pipe id: %d", id); 48 ERROR_MSG("allocation failed");
|
/system/core/libnativeloader/ |
native_loader.cpp | 130 std::string error_msg; local 131 LOG_ALWAYS_FATAL_IF(!ReadConfig(public_native_libraries_system_config, &sonames, &error_msg), 133 public_native_libraries_system_config.c_str(), error_msg.c_str()); 171 std::string* error_msg = nullptr) { 175 if (error_msg) *error_msg = strerror(errno); 190 if (error_msg) *error_msg = "Malformed line: " + line;
|
/art/patchoat/ |
patchoat.cc | 78 std::string error_msg; local 80 &cache_filename, &error_msg)) { 107 static bool ReadOatPatchDelta(const ElfFile* elf_file, off_t* delta, std::string* error_msg) { 110 *error_msg = "Unable to get oat header from elf file."; 114 *error_msg = "Elf file has an invalid oat header"; 215 std::string error_msg; local 223 &error_msg)); 225 LOG(ERROR) << "Unable to map image file " << input_image->GetPath() << " : " << error_msg; 242 std::string error_msg; local 244 PROT_READ | PROT_WRITE, MAP_PRIVATE, &error_msg)); 366 std::string error_msg; local 763 std::string error_msg; local 1095 std::string error_msg; local 1135 std::string error_msg; local [all...] |
/external/autotest/client/common_lib/ |
file_utils.py | 46 error_msg = 'File %s does not exist.' % filepath 48 raise IOError(error_msg) 73 error_msg = 'Directory %s does not exist.' % dirpath 75 raise IOError(error_msg)
|
/external/autotest/client/cros/chameleon/ |
chameleon_video_capturer.py | 80 error_msg = "Expected current time to be > 1 seconds" 85 exception=error.TestError(error_msg)) 87 error_msg = "Couldn't get the right number of frames" 92 error.TestError(error_msg),
|
/external/freetype/src/sfnt/ |
pngshim.c | 124 png_const_charp error_msg ) 128 FT_UNUSED( error_msg ); 142 png_const_charp error_msg ) 145 FT_UNUSED( error_msg );
|
/external/libbrillo/brillo/ |
flag_helper.cc | 192 std::string error_msg; local 222 &error_msg, 231 &error_msg, "ERROR: unknown command line flag '%s'\n", key.c_str()); 237 puts(error_msg.c_str());
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/ |
pngshim.c | 124 png_const_charp error_msg ) 128 FT_UNUSED( error_msg ); 142 png_const_charp error_msg ) 145 FT_UNUSED( error_msg );
|
/external/pdfium/third_party/freetype/src/sfnt/ |
pngshim.c | 124 png_const_charp error_msg ) 128 FT_UNUSED( error_msg ); 142 png_const_charp error_msg ) 145 FT_UNUSED( error_msg );
|
/external/toybox/toys/android/ |
setprop.c | 50 error_msg("failed to set property '%s' to '%s'", name, value);
|
/external/toybox/toys/posix/ |
renice.c | 41 error_msg("bad '%s'", *arg);
|
/external/libdrm/freedreno/kgsl/ |
kgsl_bo.c | 64 ERROR_MSG("alloc failed: %s", strerror(errno)); 206 ERROR_MSG("mapping user mem failed: %s", 238 ERROR_MSG("get bufinfo failed: %s", strerror(errno)); 284 ERROR_MSG("set active failed: %s", strerror(errno)); 302 ERROR_MSG("get bufinfo failed: %s", strerror(errno));
|
/art/runtime/gc/space/ |
malloc_space.cc | 91 std::string error_msg; local 93 PROT_READ | PROT_WRITE, true, false, &error_msg); 96 << PrettySize(*capacity) << ": " << error_msg; 191 std::string error_msg; local 193 PROT_READ | PROT_WRITE, &error_msg)); local 194 CHECK(mem_map.get() != nullptr) << error_msg;
|