/external/chromium_org/google_apis/ |
D | google_api_keys.cc | 203 std::string key_value = baked_in_value; in CalculateKeyValue() local 206 key_value = temp; in CalculateKeyValue() 208 << " with value " << key_value << " from environment variable."; in CalculateKeyValue() 212 key_value = command_line->GetSwitchValueASCII(command_line_switch); in CalculateKeyValue() 214 << " with value " << key_value << " from command-line switch."; in CalculateKeyValue() 217 if (key_value == DUMMY_API_TOKEN) { in CalculateKeyValue() 227 key_value = default_if_unset; in CalculateKeyValue() 232 DVLOG(1) << "API key " << environment_variable_name << "=" << key_value; in CalculateKeyValue() 234 return key_value; in CalculateKeyValue()
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/ |
D | hybi00.py | 168 key_value = get_mandatory_header(self._request, key_field) 170 self._logger.debug('%s: %r', key_field, key_value) 177 key_number = int(re.sub("\\D", "", key_value)) 182 spaces = re.subn(" ", "", key_value)[1]
|
/external/chromium_org/chrome/browser/prerender/ |
D | prerender_field_trial.cc | 284 vector<string> key_value; in GetLocalPredictorSpecValue() local 285 SplitStringUsingSubstr(elements[i], "=", &key_value); in GetLocalPredictorSpecValue() 286 if (key_value.size() == 2 && key_value[0] == spec_key) in GetLocalPredictorSpecValue() 287 return key_value[1]; in GetLocalPredictorSpecValue()
|
/external/chromium_org/chrome/test/functional/ap_lab/ |
D | linksys_ap_configurator.py | 145 def SetSecurityWEP(self, key_value, authentication): argument 146 self.AddItemToCommandList(self._SetSecurityWEP, (key_value, authentication), 149 def _SetSecurityWEP(self, key_value, authentication): argument 161 self.SetConentsOfTextFieldByXPath(key_value, text_field)
|
D | dlink_ap_configurator.py | 252 def SetSecurityWEP(self, key_value, authentication): argument 253 self.AddItemToCommandList(self._SetSecurityWEP, (key_value, authentication), 256 def _SetSecurityWEP(self, key_value, authentication): argument 262 self.SetContentOfTextFieldByID(key_value, 'wep_key_value') 263 self.SetContentOfTextFieldByID(key_value, 'verify_wep_key_value')
|
D | ap_configurator.py | 304 def SetSecurityWEP(self, key_value, authentication): argument
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/ |
D | hybi00.py | 219 key_value = get_mandatory_header(self._request, key_field) 221 self._logger.debug('%s: %r', key_field, key_value) 228 key_number = int(re.sub("\\D", "", key_value)) 233 spaces = re.subn(" ", "", key_value)[1]
|
/external/bluetooth/bluedroid/btif/include/ |
D | btif_storage.h | 323 char *key_value, 332 char *key_value,
|
/external/bluetooth/bluedroid/btif/src/ |
D | btif_dm.c | 1466 memcpy(pairing_cb.ble.penc_key.ltk,p_data->ble_key.key_value.penc_key.ltk, 16); in btif_dm_upstreams_evt() 1467 memcpy(pairing_cb.ble.penc_key.rand, p_data->ble_key.key_value.penc_key.rand,8); in btif_dm_upstreams_evt() 1468 pairing_cb.ble.penc_key.ediv = p_data->ble_key.key_value.penc_key.ediv; in btif_dm_upstreams_evt() 1469 … pairing_cb.ble.penc_key.sec_level = p_data->ble_key.key_value.penc_key.sec_level; in btif_dm_upstreams_evt() 1487 memcpy(pairing_cb.ble.pid_key, p_data->ble_key.key_value.pid_key.irk, 16); in btif_dm_upstreams_evt() 1497 pairing_cb.ble.pcsrk_key.counter = p_data->ble_key.key_value.pcsrk_key.counter; in btif_dm_upstreams_evt() 1498 … pairing_cb.ble.pcsrk_key.sec_level = p_data->ble_key.key_value.pcsrk_key.sec_level; in btif_dm_upstreams_evt() 1499 … memcpy(pairing_cb.ble.pcsrk_key.csrk,p_data->ble_key.key_value.pcsrk_key.csrk,16); in btif_dm_upstreams_evt() 1512 pairing_cb.ble.lenc_key.div = p_data->ble_key.key_value.lenc_key.div; in btif_dm_upstreams_evt() 1513 pairing_cb.ble.lenc_key.key_size = p_data->ble_key.key_value.lenc_key.key_size; in btif_dm_upstreams_evt() [all …]
|
D | btif_storage.c | 998 char *key_value, in btif_storage_get_ble_bonding_key() argument 1025 int ret = btif_config_get("Remote", bdstr, name, key_value, &key_length, &type); in btif_storage_get_ble_bonding_key() 1108 char *key_value, in btif_storage_get_ble_local_key() argument 1130 int ret = btif_config_get("Local", "Adapter", name, key_value, &key_length, &type); in btif_storage_get_ble_local_key() 1549 char *key_name, *key_value; in btif_storage_load_autopair_device_list() local 1593 key_value = strtok(NULL, BTIF_AUTO_PAIR_CONF_KEY_VAL_DELIMETER); in btif_storage_load_autopair_device_list() 1594 … btif_config_set_str("Local", BTIF_STORAGE_PATH_AUTOPAIR_BLACKLIST, key_name, key_value); in btif_storage_load_autopair_device_list()
|
/external/chromium_org/ui/keyboard/ |
D | keyboard_util.h | 61 int key_value,
|
D | keyboard_util.cc | 111 int key_value, in SendKeyEvent() argument 138 tic->InsertChar(static_cast<uint16>(key_value), ui::EF_NONE); in SendKeyEvent()
|
/external/chromium_org/chrome/browser/extensions/ |
D | extension_prefs.cc | 259 Value* key_value = NULL; in Get() local 261 !extension->Get(key_, &key_value)) { in Get() 264 return key_value->GetType() == type_enum_value ? in Get() 265 static_cast<T*>(key_value) : in Get() 273 Value* key_value = NULL; in Create() local 279 if (!extension->Get(key_, &key_value)) { in Create() 283 CHECK(key_value->GetType() == type_enum_value); in Create() 284 value_as_t = static_cast<T*>(key_value); in Create()
|
/external/chromium_org/chrome/browser/drive/ |
D | fake_drive_service.cc | 89 base::StringTokenizer key_value(token, ":"); in EntryMatchWithQuery() local 90 key_value.set_quote_chars("\"'"); in EntryMatchWithQuery() 91 if (!key_value.GetNext()) in EntryMatchWithQuery() 93 key = key_value.token(); in EntryMatchWithQuery() 94 if (!key_value.GetNext()) in EntryMatchWithQuery() 96 base::TrimString(key_value.token(), "\"'", &value); in EntryMatchWithQuery()
|
/external/chromium_org/v8/src/ |
D | ast.cc | 318 int key_value = Smi::cast(*key)->value(); in BuildConstantProperties() local 319 if (key_value > 0 in BuildConstantProperties() 320 && static_cast<uint32_t>(key_value) > max_element_index) { in BuildConstantProperties() 321 max_element_index = key_value; in BuildConstantProperties()
|
/external/chromium_org/dbus/ |
D | values_util_unittest.cc | 380 scoped_ptr<base::Value> key_value(new base::FundamentalValue(keys[i])); in TEST() local 382 base::JSONWriter::Write(key_value.get(), &key_string); in TEST()
|
/external/chromium_org/base/debug/ |
D | trace_event_unittest.cc | 204 static bool IsKeyValueInDict(const JsonKeyValue* key_value, in IsKeyValueInDict() argument 208 if (dict->Get(key_value->key, &value) && in IsKeyValueInDict() 210 CompareJsonValues(value_str, key_value->value, key_value->op)) in IsKeyValueInDict() 217 return IsKeyValueInDict(key_value, args_dict); in IsKeyValueInDict()
|
/external/bluetooth/bluedroid/bta/include/ |
D | bta_api.h | 623 tBTM_LE_KEY_VALUE key_value; member
|
/external/bluetooth/bluedroid/bta/dm/ |
D | bta_dm_act.c | 4741 … sec_event.ble_key.key_value.pid_key.irk[i] = p_data->key.p_key_value->pid_key.irk[i]; in bta_dm_ble_smp_cback() 4743 … sec_event.ble_key.key_value.pid_key.addr_type = p_data->key.p_key_value->pid_key.addr_type; in bta_dm_ble_smp_cback() 4744 memcpy( &(sec_event.ble_key.key_value.pid_key.static_addr), in bta_dm_ble_smp_cback() 4750 … memcpy(&sec_event.ble_key.key_value, p_data->key.p_key_value, sizeof(tBTM_LE_KEY_VALUE)); in bta_dm_ble_smp_cback()
|
/external/chromium/testing/gmock/include/gmock/ |
D | gmock-matchers.h | 2236 virtual bool MatchAndExplain(PairType key_value, 2239 const bool match = inner_matcher_.MatchAndExplain(key_value.first,
|
/external/v8/src/ |
D | parser.cc | 4037 int key_value = Smi::cast(*key)->value(); in BuildObjectLiteralConstantProperties() local 4038 if (key_value > 0 in BuildObjectLiteralConstantProperties() 4039 && static_cast<uint32_t>(key_value) > max_element_index) { in BuildObjectLiteralConstantProperties() 4040 max_element_index = key_value; in BuildObjectLiteralConstantProperties()
|