HomeSort by relevance Sort by last modified time
    Searched full:err_str (Results 1 - 25 of 45) sorted by null

1 2

  /system/bt/btcore/src/
hal_util.cc 41 const char* err_str = dlerror(); local
43 << (err_str ? err_str : "error unknown");
  /frameworks/base/tools/aapt2/
ResourceUtils_test.cpp 142 std::string err_str; local
143 Maybe<Reference> ref = ResourceUtils::ParseStyleParentReference("@android:style/foo", &err_str);
147 ref = ResourceUtils::ParseStyleParentReference("@style/foo", &err_str);
151 ref = ResourceUtils::ParseStyleParentReference("?android:style/foo", &err_str);
155 ref = ResourceUtils::ParseStyleParentReference("?style/foo", &err_str);
159 ref = ResourceUtils::ParseStyleParentReference("android:style/foo", &err_str);
163 ref = ResourceUtils::ParseStyleParentReference("android:foo", &err_str);
167 ref = ResourceUtils::ParseStyleParentReference("@android:foo", &err_str);
171 ref = ResourceUtils::ParseStyleParentReference("foo", &err_str);
175 ref = ResourceUtils::ParseStyleParentReference("*android:style/foo", &err_str);
    [all...]
  /external/libpcap/
pcap-bt-monitor-linux.h 31 int bt_monitor_findalldevs(pcap_if_t **alldevsp, char *err_str);
pcap-netfilter-linux.h 34 int netfilter_findalldevs(pcap_if_t **alldevsp, char *err_str);
pcap-bt-linux.h 37 int bt_findalldevs(pcap_if_t **alldevsp, char *err_str);
pcap-usb-linux.h 37 int usb_findalldevs(pcap_if_t **alldevsp, char *err_str);
pcap-bt-linux.c 77 bt_findalldevs(pcap_if_t **alldevsp, char *err_str)
90 pcap_snprintf(err_str, PCAP_ERRBUF_SIZE,
98 pcap_snprintf(err_str, PCAP_ERRBUF_SIZE, "Can't allocate %zu bytes for Bluetooth device list",
108 pcap_snprintf(err_str, PCAP_ERRBUF_SIZE,
123 dev_descr, err_str) < 0)
pcap-dbus.c 271 dbus_findalldevs(pcap_if_t **alldevsp, char *err_str)
273 if (pcap_add_if(alldevsp, "dbus-system", 0, "D-Bus system bus", err_str) < 0)
275 if (pcap_add_if(alldevsp, "dbus-session", 0, "D-Bus session bus", err_str) < 0)
pcap-bt-monitor-linux.c 63 bt_monitor_findalldevs(pcap_if_t **alldevsp, char *err_str)
68 "Bluetooth Linux Monitor", err_str) < 0)
pcap-usb-linux.c 143 usb_dev_add(pcap_if_t** alldevsp, int n, char *err_str)
151 dev_descr, err_str) < 0)
157 usb_findalldevs(pcap_if_t **alldevsp, char *err_str)
178 err_str) < 0)
197 err_str) < 0)
218 ret = usb_dev_add(alldevsp, n, err_str);
239 ret = usb_dev_add(alldevsp, n, err_str);
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 59 const std::string err_str = sys::StrError(); local
60 DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str << "\n");
69 const std::string err_str = sys::StrError(); local
71 << err_str << "\n");
  /hardware/ril/rild/
rild.c 112 const char *err_str = NULL; local
188 err_str = dlerror();
189 if (err_str) {
190 RLOGW("RIL_SAP_Init not defined or exported in %s: %s\n", rilLibPath, err_str);
  /system/extras/perfprofd/binder_interface/
perfprofd_binder.cc 274 auto err_str = std::fstream(base::StringPrintf("/proc/self/fd/%d", err_fd)); local
284 err_str << base::StringPrintf("Could not parse %s", String8(args[i]).string())
295 err_str << error_msg << std::endl;
310 err_str << "Bad file descriptor " << args[1] << std::endl;
317 err_str << status.toString8() << std::endl;
325 err_str << status.toString8() << std::endl;
  /external/autotest/client/site_tests/power_AudioDetector/
power_AudioDetector.py 94 err_str = 'System suspended while audio was playing.'
95 raise error.TestFail(err_str)
  /external/autotest/client/site_tests/power_IdleSuspend/
power_IdleSuspend.py 103 err_str = 'bad power state written to /sys/power/state'
104 raise error.TestFail(err_str)
  /external/autotest/client/site_tests/power_Standby/
power_Standby.py 61 err_str = "Requested S3 time and actual varied by %.2f%%." \
63 raise error.TestFail(err_str)
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
OProfileJITEventListener.cpp 55 const std::string err_str = sys::StrError(); local
56 DEBUG(dbgs() << "Failed to connect to OProfile agent: " << err_str << "\n");
65 const std::string err_str = sys::StrError(); local
67 << err_str << "\n");
  /frameworks/base/tools/aapt2/link/
XmlReferenceLinker.cpp 99 std::string err_str; variable
101 ReferenceLinker::CompileXmlAttribute(attr_ref, callsite_, symbols_, &err_str);
107 error_msg << " " << err_str; variable
ReferenceLinker.cpp 73 std::string err_str; variable
83 transformed_reference, callsite_, symbols_, &err_str);
113 msg << "' " << err_str; variable
335 std::string err_str; local
337 ResolveSymbolCheckVisibility(transformed_reference, callsite, symbols, &err_str);
350 error_msg << " " << err_str; local
  /hardware/libhardware/
hardware.c 100 char const *err_str = dlerror(); local
101 ALOGE("load: module=%s\n%s", path, err_str?err_str:"unknown");
  /external/strace/
keyctl.c 194 const char *err_str = err_name(error); local
199 if (err_str)
200 tprintf("%s, ", err_str);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/
output_test_helper.cc 154 std::string err_str; local
155 regex->Init(substituted_regex,& err_str);
156 CHECK(err_str.empty()) << "Could not construct regex \"" << substituted_regex
159 << "\n got error: " << err_str; local
  /frameworks/base/tools/aapt2/cmd/
Compile.cpp 91 std::stringstream err_str; local
92 err_str << "invalid configuration '" << config_str << "'";
93 *out_error = err_str.str();
189 std::string err_str; local
190 Maybe<ResourcePathData> path_data = ExtractResourcePathData(full_path, &err_str);
192 context->GetDiagnostics()->Error(DiagMessage(full_path) << err_str);
  /external/v8/src/
messages.cc 869 MaybeHandle<String> err_str = local
871 if (err_str.is_null()) {
880 err_str = ErrorUtils::ToString(isolate, pending_exception);
881 if (err_str.is_null()) {
890 builder->AppendString(err_str.ToHandleChecked());
894 builder->AppendString(err_str.ToHandleChecked());
    [all...]
  /external/mesa3d/src/mesa/program/
program_parse.y 325 const char *const err_str = (state->mode == ARB_vertex)
329 yyerror(& @2, state, err_str);
    [all...]

Completed in 1224 milliseconds

1 2