HomeSort by relevance Sort by last modified time
    Searched refs:error_msg (Results 51 - 75 of 256) sorted by null

1 23 4 5 6 7 8 91011

  /art/runtime/
dex2oat_environment_test.h 56 std::string error_msg; variable
63 ASSERT_FALSE(DexFile::GetChecksum(GetStrippedDexSrc1().c_str(), &checksum, &error_msg))
72 GetMultiDexSrc1().c_str(), &error_msg, &multi1)) << error_msg; variable
77 GetMultiDexSrc2().c_str(), &error_msg, &multi2)) << error_msg; variable
138 bool GetCachedImageFile(/*out*/std::string* image, std::string* error_msg) const {
140 return GetDalvikCacheFilename(GetImageLocation().c_str(), cache.c_str(), image, error_msg);
mem_map.h 70 std::string* error_msg,
90 std::string* error_msg) {
100 error_msg);
106 // the memory. If error_msg is null then we do not print /proc/maps to the log if
120 std::string* error_msg);
174 std::string* error_msg,
208 static bool ContainedWithinExistingMap(uint8_t* ptr, size_t size, std::string* error_msg)
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...]
elf_file_impl.h 55 std::string* error_msg,
61 std::string* error_msg);
118 bool GetLoadedSize(size_t* size, std::string* error_msg) const;
122 bool Load(File* file, bool executable, bool low_4gb, std::string* error_msg);
135 bool Strip(File* file, std::string* error_msg);
140 bool Setup(File* file, int prot, int flags, bool low_4gb, std::string* error_msg);
142 bool SetMap(File* file, MemMap* map, std::string* error_msg);
166 bool CheckSectionsExist(File* file, std::string* error_msg) const;
172 bool CheckAndSet(Elf32_Off offset, const char* label, uint8_t** target, std::string* error_msg);
utils_test.cc 362 std::string error_msg; local
365 EXPECT_TRUE(Exec(command, &error_msg));
367 EXPECT_EQ(0U, error_msg.size()) << error_msg;
376 std::string error_msg; local
379 EXPECT_FALSE(Exec(command, &error_msg));
380 EXPECT_FALSE(error_msg.empty());
398 std::string error_msg; local
401 EXPECT_FALSE(Exec(command, &error_msg));
402 EXPECT_NE(0U, error_msg.size()) << error_msg
423 std::string error_msg; local
    [all...]
oat_file_assistant_test.cc 52 bool PreRelocateImage(std::string* error_msg) {
54 if (!GetCachedImageFile(&image, error_msg)) {
67 return Exec(argv, error_msg);
71 std::string error_msg; local
72 ASSERT_TRUE(PreRelocateImage(&error_msg)) << error_msg;
109 std::string error_msg; local
110 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
122 &error_msg));
184 std::string error_msg; local
228 std::string error_msg; local
287 std::string error_msg; local
435 std::string error_msg; local
539 std::string error_msg; local
602 std::string error_msg; local
659 std::string error_msg; local
710 std::string error_msg; local
754 std::string error_msg; local
934 std::string error_msg; local
965 std::string error_msg; local
981 std::string error_msg; local
1061 std::string error_msg; local
1203 std::string error_msg; local
    [all...]
  /art/runtime/arch/
instruction_set_features.h 41 std::string* error_msg);
63 std::string* error_msg) const WARN_UNUSED;
112 std::string* error_msg) const = 0;
  /art/runtime/verifier/
method_verifier_test.cc 39 std::string error_msg; local
45 &error_msg);
46 ASSERT_TRUE(failure == MethodVerifier::kNoFailure) << error_msg;
  /external/autotest/client/common_lib/cros/
path_utils.py 62 error_msg = 'Unable to find %s' % cmd
64 error_msg += ' on %s' % host.hostname
65 raise error.TestError(error_msg)
  /external/autotest/client/site_tests/hardware_TPMCheck/
hardware_TPMCheck.py 52 error_msg = 'invalid response to tpmc %s' % subcommand
56 raise error.TestError('%s: %s' % (error_msg, out))
62 (error_msg, sorted(set(expected) - result_set)))
  /external/strace/linux/x86_64/
get_scno.c 98 error_msg("Unknown value CS=0x%08X while "
124 error_msg("Unknown syscall opcode (0x%04X) while "
138 error_msg("syscall_%lu(...) in unsupported "
  /external/autotest/client/site_tests/touch_UpdateErrors/
touch_UpdateErrors.py 84 error_msg = log_entries.split('\n')[0]
85 error_msg = error_msg[error_msg.find(term)+len(term):].strip()
86 raise error.TestFail(error_msg)
  /art/dex2oat/
dex2oat_test.cc 61 std::string error_msg; local
62 bool success = Dex2Oat(args, &error_msg);
65 ASSERT_TRUE(success) << error_msg;
75 &error_msg));
76 ASSERT_TRUE(odex_file.get() != nullptr) << error_msg;
82 error_msg_ = error_msg;
92 &error_msg));
103 bool Dex2Oat(const std::vector<std::string>& dex2oat_args, std::string* error_msg) {
109 *error_msg = "No image location found for Dex2Oat.";
318 std::string error_msg; local
    [all...]
  /art/compiler/utils/
assembler_test_base.h 115 EXPECT_TRUE(res.ok) << res.error_msg;
199 std::string error_msg; member in struct:art::AssemblerTestInfrastructure::NativeAssemblerResult
206 bool Assemble(const char* from_file, const char* to_file, std::string* error_msg) {
229 bool success = Exec(args, error_msg);
248 std::string error_msg; local
265 if (!Exec(args, &error_msg)) {
266 EXPECT_TRUE(false) << error_msg;
299 std::string error_msg; local
300 if (!DisassembleBinary(data_name, &error_msg)) {
301 LOG(INFO) << "Error disassembling: " << error_msg;
505 std::string error_msg; local
545 std::string error_msg; local
    [all...]
  /external/autotest/client/site_tests/cellular_OutOfCreditsSubscriptionState/
cellular_OutOfCreditsSubscriptionState.py 62 error_msg = 'Service marked as out-of-credits when it ' \
64 logging.error(error_msg)
65 raise error.TestFail(error_msg)
76 error_msg = 'Service not marked out-of-credits when it ' \
78 logging.error(error_msg)
79 raise error.TestFail(error_msg)
  /art/runtime/arch/mips64/
instruction_set_features_mips64.cc 28 const std::string& variant, std::string* error_msg ATTRIBUTE_UNUSED) {
103 const bool smp, const std::vector<std::string>& features, std::string* error_msg) const {
108 *error_msg = StringPrintf("Unknown instruction set feature: '%s'", feature.c_str());
  /external/toybox/toys/other/
switch_root.c 57 error_msg("not ramfs");
65 error_msg("bad newroot '%s'", newroot);
77 error_msg("bad init");
  /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/arm64/
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());
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 166 std::string* error_msg) {
167 error_msg->clear();
177 *error_msg += "\n---Illegal value, no directories allowed: " + soname;
187 *error_msg += "\n---Illegal value at end of line (only 32 or 64 allowed): " + soname;
219 std::string error_msg; local
222 &error_msg)) {
224 errors.push_back("Errors in vendor public library file:" + error_msg);
229 &error_msg)) {
231 errors.push_back("Errors in system public library file:" + error_msg);
  /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)
revision_control.py 127 error_msg=None):
138 @param error_msg: When passed with error_class, used as a friendly
149 cmd, error_msg if error_msg is not None else '')
151 raise error_class(error_msg if error_msg is not None
225 error_msg='Failed to reset to %s' % branch_or_sha)
276 error_msg='Failed to refresh index.')
280 error_msg='Failed to check for local changes.')
291 error_msg='Failed to set origin.'
    [all...]
  /external/toybox/toys/posix/
renice.c 41 error_msg("bad '%s'", *arg);
  /art/runtime/arch/mips/
instruction_set_features_mips.h 29 std::string* error_msg);
80 std::string* error_msg) const OVERRIDE;
  /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;

Completed in 448 milliseconds

1 23 4 5 6 7 8 91011