Home
last modified time | relevance | path

Searched refs:module_str (Results 1 – 7 of 7) sorted by relevance

/external/wpa_supplicant_8/hostapd/
Dmain.c48 char *format, *module_str; in hostapd_logger_cb() local
70 module_str = "IEEE 802.11"; in hostapd_logger_cb()
73 module_str = "IEEE 802.1X"; in hostapd_logger_cb()
76 module_str = "RADIUS"; in hostapd_logger_cb()
79 module_str = "WPA"; in hostapd_logger_cb()
82 module_str = "DRIVER"; in hostapd_logger_cb()
85 module_str = "IAPP"; in hostapd_logger_cb()
88 module_str = "MLME"; in hostapd_logger_cb()
91 module_str = NULL; in hostapd_logger_cb()
98 module_str ? " " : "", module_str ? module_str : "", in hostapd_logger_cb()
[all …]
/external/python/cpython2/Python/
D_warnings.c516 const char *module_str = PyString_AsString(*module); in setup_context() local
518 if (module_str && strcmp(module_str, "__main__") == 0) { in setup_context()
743 const char *module_str, PyObject *registry) in PyErr_WarnExplicit() argument
753 if (module_str != NULL) { in PyErr_WarnExplicit()
754 module = PyString_FromString(module_str); in PyErr_WarnExplicit()
/external/python/cpython3/Python/
D_warnings.c1032 const char *module_str, PyObject *registry) in PyErr_WarnExplicit() argument
1041 if (module_str != NULL) { in PyErr_WarnExplicit()
1042 module = PyUnicode_FromString(module_str); in PyErr_WarnExplicit()
1060 const char *module_str, PyObject *registry, in PyErr_WarnExplicitFormat() argument
1071 if (module_str != NULL) { in PyErr_WarnExplicitFormat()
1072 module = PyUnicode_FromString(module_str); in PyErr_WarnExplicitFormat()
/external/google-breakpad/src/tools/mac/crash_report/
Don_demand_symbol_supplier.mm283 NSString *module_str = [[NSFileManager defaultManager]
287 if (dump.Read(module_str)) {
306 printf("Unable to open %s\n", [module_str UTF8String]);
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_ordering_test.cc317 const char* module_str = R"( in TEST_F() local
360 tools::Parse(module_str)); in TEST_F()
Dlayout_assignment_test.cc596 const char* module_str = R"( in TEST_F() local
616 auto module = tools::Parse(module_str).ValueOrDie(); in TEST_F()
/external/python/cpython2/Modules/
DcPickle.c2038 char *module_str, *name_str; in save_inst() local
2101 module_str = PyString_AS_STRING((PyStringObject *)module); in save_inst()
2107 if (self->write_func(self, module_str, module_size) < 0) in save_inst()
2180 char *name_str, *module_str; in save_global() local
2201 module_str = PyString_AS_STRING((PyStringObject *)module); in save_global()
2206 mod = PyImport_ImportModule(module_str); in save_global()
2292 if (self->write_func(self, module_str, module_size) < 0) in save_global()