HomeSort by relevance Sort by last modified time
    Searched defs:error_str (Results 1 - 9 of 9) sorted by null

  /art/runtime/
indirect_reference_table.cc 95 std::string error_str; local
98 PROT_READ | PROT_WRITE, false, false, &error_str));
100 CHECK(table_mem_map_.get() != nullptr) << error_str;
107 LOG(ERROR) << error_str;
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 261 std::string error_str; local
263 error_str += line + '\n';
265 return env->NewStringUTF(error_str.c_str());
  /external/strace/
count.c 162 char error_str[sizeof(int)*3]; local
198 error_str[0] = '\0';
200 sprintf(error_str, "%u", cc->errors);
210 error_str, sysent[idx].sys_name);
217 error_str[0] = '\0';
219 sprintf(error_str, "%u", error_cum);
222 call_cum, error_str, "total");
  /art/runtime/gc/collector/
immune_spaces_test.cc 83 std::string error_str; local
90 &error_str));
92 LOG(ERROR) << error_str;
104 &error_str));
106 LOG(ERROR) << error_str;
141 std::string error_str; local
148 &error_str));
150 LOG(ERROR) << "Failed to allocate memory region " << error_str;
  /art/runtime/jit/
jit_code_cache.cc 80 std::string error_str; local
83 "data-code-cache", nullptr, max_capacity, kProtAll, false, false, &error_str, use_ashmem);
86 oss << "Failed to create read write execute cache: " << error_str << " size=" << max_capacity;
103 data_map->RemapAtEnd(divider, "jit-code-cache", kProtAll, &error_str, use_ashmem);
106 oss << "Failed to create read write execute cache: " << error_str << " size=" << max_capacity;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 720 char error_str[64]; local
721 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
722 return ErrorV(error_str);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 702 char error_str[64]; local
703 sprintf(error_str, "Unknown function referenced %s", Callee.c_str());
704 return ErrorV(error_str);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 1162 char error_str[64]; local
    [all...]
  /art/runtime/gc/
heap.cc 384 std::string error_str; local
397 &error_str));
398 CHECK(non_moving_space_mem_map != nullptr) << error_str;
409 &error_str));
416 &error_str));
418 CHECK(main_mem_map_1.get() != nullptr) << error_str;
425 capacity_, &error_str));
426 CHECK(main_mem_map_2.get() != nullptr) << error_str;
    [all...]

Completed in 646 milliseconds