Home
last modified time | relevance | path

Searched refs:key_string (Results 1 – 17 of 17) sorted by relevance

/external/webrtc/sdk/objc/components/video_codec/
Dhelpers.cc46 std::string key_string = CFStringToString(key); in SetVTSessionProperty() local
47 RTC_LOG(LS_ERROR) << "VTSessionSetProperty failed to set: " << key_string in SetVTSessionProperty()
62 std::string key_string = CFStringToString(key); in SetVTSessionProperty() local
63 RTC_LOG(LS_ERROR) << "VTSessionSetProperty failed to set: " << key_string in SetVTSessionProperty()
73 std::string key_string = CFStringToString(key); in SetVTSessionProperty() local
74 RTC_LOG(LS_ERROR) << "VTSessionSetProperty failed to set: " << key_string in SetVTSessionProperty()
85 std::string key_string = CFStringToString(key); in SetVTSessionProperty() local
87 RTC_LOG(LS_ERROR) << "VTSessionSetProperty failed to set: " << key_string in SetVTSessionProperty()
/external/arm-trusted-firmware/tools/encrypt_fw/src/
Dencrypt.c22 static int gcm_encrypt(unsigned short fw_enc_status, char *key_string, in gcm_encrypt() argument
36 if (strlen(key_string) != KEY_STRING_SIZE) { in gcm_encrypt()
37 ERROR("Unsupported key size: %lu\n", strlen(key_string)); in gcm_encrypt()
42 if (sscanf(&key_string[j], "%02hhx", &key[i]) != 1) { in gcm_encrypt()
157 int encrypt_file(unsigned short fw_enc_status, int enc_alg, char *key_string, in encrypt_file() argument
162 return gcm_encrypt(fw_enc_status, key_string, nonce_string, in encrypt_file()
/external/python/cpython3/Lib/idlelib/
Dconfig_key.py72 self.key_string = StringVar(self)
73 self.key_string.set('')
123 textvariable=self.key_string, relief='groove',
178 textvariable=self.key_string)
243 self.key_string.set(f"<{'-'.join(keylist)}>")
256 self.key_string.set('')
259 keys = self.key_string.get().strip()
/external/autotest/client/site_tests/platform_LibCBench/
Dplatform_LibCBench.py75 key_string = re.sub('[^\w]', '_', benchmark)
76 perf_results[key_string] = average
/external/libchrome/dbus/
Dvalues_util.cc45 std::string key_string; in PopDictionaryEntries() local
48 if (!entry_reader.PopString(&key_string)) in PopDictionaryEntries()
56 base::JSONWriter::Write(*key, &key_string); in PopDictionaryEntries()
62 dictionary_value->SetWithoutPathExpansion(key_string, std::move(value)); in PopDictionaryEntries()
Dvalues_util_unittest.cc377 std::string key_string; in TEST() local
378 base::JSONWriter::Write(base::Value(keys[i]), &key_string); in TEST()
379 dictionary_value.SetKey(key_string, base::Value(values[i])); in TEST()
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_config_key.py53 self.dialog.key_string.set(' ')
59 self.dialog.key_string.set('<Key-F11>')
213 string = dialog.key_string.get
234 string = dialog.key_string.get
/external/arm-trusted-firmware/tools/encrypt_fw/include/
Dencrypt.h16 int encrypt_file(unsigned short fw_enc_status, int enc_alg, char *key_string,
/external/grpc-grpc/test/core/slice/
Dslice_hash_table_test.cc56 void CheckNonExistentValue(const char* key_string, const TestHashTable& table) { in CheckNonExistentValue() argument
57 grpc_slice key = grpc_slice_from_static_string(key_string); in CheckNonExistentValue()
/external/python/oauth2client/oauth2client/contrib/
Dmultistore_file.py118 def get_credential_storage_custom_string_key(filename, key_string, argument
135 key_dict = {'key': key_string}
/external/autotest/tko/
Dmodels.py100 key_string = ','.join([base] + hashes)
101 return utils.hash('md5', key_string).hexdigest()
/external/tensorflow/tensorflow/python/lib/core/
Dndarray_tensor.cc80 const char* key_string = in PyArrayDescr_to_TF_DataType() local
83 if (!key_string) { in PyArrayDescr_to_TF_DataType()
86 tensorflow::string key = key_string; in PyArrayDescr_to_TF_DataType()
/external/tensorflow/tensorflow/python/client/
Dtf_session_helper.cc83 char* key_string = PyBytes_AsString(key); in TF_Run_wrapper_helper() local
84 if (!key_string) { in TF_Run_wrapper_helper()
89 input_names.push_back(key_string); in TF_Run_wrapper_helper()
/external/libxml2/
Drngparser.c117 const xmlChar *key_string; member
232 (str == ctxt->key_string) || in xmlCRNGIsKeyword()
839 if (token->token == ctxt->key_string) { in xmlParseCRNG_datatype()
1477 ctxt.key_string = xmlDictLookup(ctxt.dict, BAD_CAST "string", -1); in xmlConvertCRNG()
/external/tensorflow/tensorflow/core/util/tensor_bundle/
Dtensor_bundle.cc442 const string key_string(key); in Add() local
443 if (entries_.find(key_string) != entries_.end()) { in Add()
448 BundleEntryProto* entry = &entries_[key_string]; in Add()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntimeV2.cpp1078 std::string key_string; in operator *() local
1080 m_parent.m_process->ReadCStringFromMemory(key, key_string, err); in operator *()
1084 return element(ConstString(key_string.c_str()), in operator *()
/external/selinux/python/sepolicy/sepolicy/
Dgui.py714 def match_func(self, completion, key_string, iter, func_data): argument
716 if self.application_liststore.get_value(iter, 0).find(key_string) != -1: