Searched refs:input_key (Results 1 – 9 of 9) sorted by relevance
/external/u-boot/lib/efi_selftest/ |
D | efi_selftest_textinputex.c | 119 struct efi_key_data input_key = { {0, 0}, {0, 0} }; in execute() local 134 ret = con_in_ex->read_key_stroke_ex(con_in_ex, &input_key); in execute() 151 ret = con_in_ex->read_key_stroke_ex(con_in_ex, &input_key); in execute() 161 (unsigned int)input_key.key.unicode_char, in execute() 162 efi_st_translate_char(input_key.key.unicode_char), in execute() 163 (unsigned int)input_key.key.scan_code); in execute() 164 if (input_key.key_state.key_shift_state & in execute() 166 if (input_key.key_state.key_shift_state & in execute() 169 if (input_key.key_state.key_shift_state & in execute() 172 if (input_key.key_state.key_shift_state & in execute() [all …]
|
D | efi_selftest_textinput.c | 41 struct efi_input_key input_key = {0}; in execute() local 51 ret = con_in->read_key_stroke(con_in, &input_key); in execute() 68 ret = con_in->read_key_stroke(con_in, &input_key); in execute() 78 (unsigned int)input_key.unicode_char, in execute() 79 efi_st_translate_char(input_key.unicode_char), in execute() 80 (unsigned int)input_key.scan_code, in execute() 81 efi_st_translate_code(input_key.scan_code)); in execute() 83 switch (input_key.unicode_char) { in execute()
|
D | efi_selftest_console.c | 247 struct efi_input_key input_key; in efi_st_get_key() local 252 ret = con_in->read_key_stroke(con_in, &input_key); in efi_st_get_key() 254 return input_key.unicode_char; in efi_st_get_key()
|
/external/toybox/toys/pending/ |
D | more.c | 47 int input_key; in prompt() local 58 input_key = tolower(getc(cin)); in prompt() 60 if (strchr(" \nrq", input_key)) { in prompt() 62 return input_key; in prompt() 90 int ch, input_key = 0, show_prompt; in more_main() local 135 if (input_key != 'r' && show_prompt) { in more_main() 137 input_key = prompt(cin, "--More--(%d%% of %lld bytes)", in more_main() 141 input_key = prompt(cin, "--More--"); in more_main() 142 if (input_key == 'q') goto stop; in more_main() 155 if (++row >= rows || input_key == '\n') show_prompt = 1; in more_main() [all …]
|
/external/libsrtp2/test/ |
D | rtp_decoder.c | 169 char *input_key = NULL; in main() local 211 input_key = optarg_s; in main() 223 input_key = malloc(scs.key_size); in main() 269 input_key = malloc(scs.key_size); in main() 319 if ((sec_servs && !input_key) || (!sec_servs && input_key)) { in main() 324 if (input_key == NULL) { in main() 521 len = base64_string_to_octet_string(key, &pad, input_key, in main() 522 strlen(input_key)); in main() 525 len = hex_string_to_octet_string(key, input_key, expected_len); in main() 534 if (strlen(input_key) > policy.rtp.cipher_key_len * 2) { in main() [all …]
|
D | rtpw.c | 155 char *input_key = NULL; in main() local 205 input_key = optarg_s; in main() 268 if ((sec_servs && !input_key) || (!sec_servs && input_key)) { in main() 465 len = base64_string_to_octet_string(key, &pad, input_key, in main() 473 len = hex_string_to_octet_string(key, input_key, expected_len); in main() 482 if ((int)strlen(input_key) > policy.rtp.cipher_key_len * 2) { in main() 485 policy.rtp.cipher_key_len * 2, (unsigned)strlen(input_key)); in main()
|
D | rtp.h | 125 unsigned char *input_key /* master key/salt in hex */ 132 unsigned char *input_key /* master key/salt in hex */
|
/external/tensorflow/tensorflow/python/tools/ |
D | saved_model_cli.py | 302 for input_key, input_tensor in sorted(inputs_tensor_info.items()): 303 in_print(' inputs[\'%s\'] tensor_info:' % input_key) 686 input_key, expr = input_raw.split('=', 1) 688 input_dict[input_key] = eval(expr) # pylint: disable=eval-used 713 for input_key, example_list in input_dict.items(): 718 input_dict[input_key] = [
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | direct_session.cc | 1145 const string& input_key = it->second; in SendPRunInputs() local 1147 s = Rendezvous::ParseKey(input_key, &parsed); in SendPRunInputs()
|