Home
last modified time | relevance | path

Searched refs:key_str (Results 1 – 23 of 23) sorted by relevance

/external/grpc-grpc/src/core/lib/transport/
Dmetadata.cc155 char* key_str = grpc_slice_to_c_string(md->key); in ref_md_locked() local
160 gpr_atm_no_barrier_load(&md->refcnt) + 1, key_str, value_str); in ref_md_locked()
161 gpr_free(key_str); in ref_md_locked()
255 char* key_str = grpc_slice_to_c_string(allocated->key); in grpc_mdelem_create() local
259 key_str, value_str); in grpc_mdelem_create()
260 gpr_free(key_str); in grpc_mdelem_create()
308 char* key_str = grpc_slice_to_c_string(md->key); in grpc_mdelem_create() local
311 gpr_atm_no_barrier_load(&md->refcnt), key_str, value_str); in grpc_mdelem_create()
312 gpr_free(key_str); in grpc_mdelem_create()
355 char* key_str = grpc_slice_to_c_string(md->key); in grpc_mdelem_ref() local
[all …]
/external/grpc-grpc/test/core/security/
Djwt_verifier_test.cc356 char* key_str = json_key_str(json_key_str_part3_for_google_email_issuer); in test_jwt_verifier_google_email_issuer_success() local
357 grpc_auth_json_key key = grpc_auth_json_key_create_from_string(key_str); in test_jwt_verifier_google_email_issuer_success()
358 gpr_free(key_str); in test_jwt_verifier_google_email_issuer_success()
389 char* key_str = json_key_str(json_key_str_part3_for_custom_email_issuer); in test_jwt_verifier_custom_email_issuer_success() local
390 grpc_auth_json_key key = grpc_auth_json_key_create_from_string(key_str); in test_jwt_verifier_custom_email_issuer_success()
391 gpr_free(key_str); in test_jwt_verifier_custom_email_issuer_success()
436 char* key_str = json_key_str(json_key_str_part3_for_url_issuer); in test_jwt_verifier_url_issuer_success() local
437 grpc_auth_json_key key = grpc_auth_json_key_create_from_string(key_str); in test_jwt_verifier_url_issuer_success()
438 gpr_free(key_str); in test_jwt_verifier_url_issuer_success()
475 char* key_str = json_key_str(json_key_str_part3_for_url_issuer); in test_jwt_verifier_url_issuer_bad_config() local
[all …]
/external/bcc/src/cc/api/
DBPFTable.cc42 StatusTuple BPFTable::get_value(const std::string& key_str, in get_value() argument
49 r = string_to_key(key_str, key); in get_value()
59 StatusTuple BPFTable::get_value(const std::string& key_str, in get_value() argument
67 r = string_to_key(key_str, key); in get_value()
84 StatusTuple BPFTable::update_value(const std::string& key_str, in update_value() argument
91 r = string_to_key(key_str, key); in update_value()
105 StatusTuple BPFTable::update_value(const std::string& key_str, in update_value() argument
113 r = string_to_key(key_str, key); in update_value()
132 StatusTuple BPFTable::remove_value(const std::string& key_str) { in remove_value() argument
137 r = string_to_key(key_str, key); in remove_value()
[all …]
DBPFTable.h43 StatusTuple string_to_key(const std::string& key_str, KeyType* key) { in string_to_key() argument
44 return desc.key_sscanf(key_str.c_str(), key); in string_to_key()
51 StatusTuple key_to_string(const KeyType* key, std::string& key_str) { in key_to_string() argument
55 key_str.assign(buf); in key_to_string()
95 StatusTuple get_value(const std::string& key_str, std::string& value);
96 StatusTuple get_value(const std::string& key_str,
99 StatusTuple update_value(const std::string& key_str,
101 StatusTuple update_value(const std::string& key_str,
104 StatusTuple remove_value(const std::string& key_str);
/external/libxcam/modules/ocl/
Dcl_kernel.cpp110 char key_str[1024]; in build_kernel() local
120 key_str, sizeof(key_str), in build_kernel()
125 key = key_str; in build_kernel()
145 cache_path, key_str); in build_kernel()
175 "build kernel(%s) from binary failed", key_str); in build_kernel()
188 "build kernel(%s) from source failed", key_str); in build_kernel()
223 "build kernel(%s) failed, unknown error", key_str); in build_kernel()
228 "load kernel(%s) from kernel failed", key_str); in build_kernel()
/external/grpc-grpc/test/core/slice/
Dslice_weak_hash_table_test.cc38 grpc_slice BuildRefCountedKey(const char* key_str) { in BuildRefCountedKey() argument
39 const size_t key_length = strlen(key_str); in BuildRefCountedKey()
41 memcpy(GRPC_SLICE_START_PTR(key), key_str, key_length); in BuildRefCountedKey()
/external/u-boot/scripts/kconfig/
Dnconf.c301 const char *key_str; member
310 .key_str = "F1",
316 .key_str = "F2",
322 .key_str = "F3",
328 .key_str = "F4",
334 .key_str = "F5",
340 .key_str = "F6",
346 .key_str = "F7",
352 .key_str = "F8",
358 .key_str = "F9",
[all …]
/external/curl/lib/
Dhash.c259 const char *key_str = (const char *) key; in Curl_hash_str() local
260 const char *end = key_str + key_length; in Curl_hash_str()
263 while(key_str < end) { in Curl_hash_str()
265 h ^= *key_str++; in Curl_hash_str()
/external/toolchain-utils/binary_search_tool/
Dbisect.py78 key_str = str(key).rjust(max_key_len)
80 out += ' %s : %s\n' % (key_str, val_str)
91 key_str = str(key).rjust(max_key_len)
95 out += ' %s %s : %s\n' % (changed_str, key_str, val_str)
/external/pdfium/core/fpdfapi/page/
Dcpdf_allstates.cpp42 const ByteString& key_str = it.first; in ProcessExtGS() local
48 uint32_t key = key_str.GetID(); in ProcessExtGS()
/external/strace/tests-m32/
Dioctl_evdev-success.c202 const char *key_str[] = { "2", "KEY_1", "KEY_2" }; in main() local
215 { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit }, &key_str}, in main()
/external/strace/tests-mx32/
Dioctl_evdev-success.c202 const char *key_str[] = { "2", "KEY_1", "KEY_2" }; in main() local
215 { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit }, &key_str}, in main()
/external/strace/tests/
Dioctl_evdev-success.c202 const char *key_str[] = { "2", "KEY_1", "KEY_2" }; in main() local
215 { { ARG_STR(EVIOCGBIT(EV_KEY, 0)), key, print_getbit }, &key_str}, in main()
/external/bcc/tools/
Dargdist.py497 key_str = "total calls"
499 key_str = "retval = %s" % \
502 key_str = self._display_key(key)
504 (str(value.value), key_str))
/external/webrtc/talk/session/media/
Dsrtpfilter.cc472 std::string key_b64(key_params.substr(7)), key_str; in ParseKeyParams() local
474 &key_str, NULL) || in ParseKeyParams()
475 static_cast<int>(key_str.size()) != len) { in ParseKeyParams()
479 memcpy(key, key_str.c_str(), len); in ParseKeyParams()
/external/v8/src/objects/
Djs-plural-rules.cc229 Handle<String> key_str = isolate->factory()->NewStringFromAsciiChecked(key); in CreateDataPropertyForOptions() local
233 CHECK(JSReceiver::CreateDataProperty(isolate, options, key_str, value, in CreateDataPropertyForOptions()
/external/libtextclassifier/utils/intents/
Dintent-generator.cc281 const StringPiece key_str = ReadString(/*index=*/-1); in HandleUserRestrictionsCallback() local
282 if (key_str.empty()) { in HandleUserRestrictionsCallback()
288 ScopedLocalRef<jstring> key = jni_cache_->ConvertToJavaString(key_str); in HandleUserRestrictionsCallback()
/external/bcc/src/lua/bcc/
Dtable.lua69 function BaseTable:key_scanf(key_str)
72 self.bpf.module, self.map_id, key_str, pkey)
/external/grpc-grpc/src/core/lib/iomgr/
Derror.cc634 static char* key_str(grpc_error_strs which) { in key_str() function
652 append_kv(kvs, key_str(static_cast<grpc_error_strs>(which)), in collect_strs_kvs()
/external/wpa_supplicant_8/wpa_supplicant/
Dwps_supplicant.c809 char key_str[65]; in wpa_supplicant_wps_event_er_ap_settings() local
812 key_str[0] = '\0'; in wpa_supplicant_wps_event_er_ap_settings()
815 os_memcpy(key_str, cred->key, cred->key_len); in wpa_supplicant_wps_event_er_ap_settings()
816 key_str[cred->key_len] = '\0'; in wpa_supplicant_wps_event_er_ap_settings()
826 cred->auth_type, cred->encr_type, key_str); in wpa_supplicant_wps_event_er_ap_settings()
/external/bcc/src/python/bcc/
Dtable.py191 def key_scanf(self, key_str): argument
193 res = lib.bpf_table_key_sscanf(self.bpf.module, self.map_id, key_str,
/external/bcc/src/cc/
Dbpf_module.cc937 int BPFModule::table_key_scanf(size_t id, const char *key_str, void *key) { in table_key_scanf() argument
941 StatusTuple rc = desc.key_sscanf(key_str, key); in table_key_scanf()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc491 const string key_str(key_str_data, key_str_size); in ForEachCompositeField() local
493 message_descriptor->FindFieldByName(key_str); in ForEachCompositeField()