/system/media/camera/docs/ |
D | metadata_helpers.py | 749 def inner(text): argument 751 text += '\n\n<b>Units</b>: %s\n' % (dedent(entry.units)) 753 text += '\n\n<b>Possible values:</b>\n<ul>\n' 756 text += ' <li>{@link #%s %s}</li>\n' % ( jenum_value(entry, value ), value.name ) 757 text += '</ul>\n' 760 text += '\n\n<b>Available values for this device:</b><br>\n' 762 text += '\n\n<b>Range of valid values:</b><br>\n' 763 text += '%s\n' % (dedent(entry.range)) 765 text += '\n\n<b>Optional</b> - This value may be {@code null} on some devices.\n' 767 text += \ [all …]
|
D | html.mako | 22 <style type="text/css"> 26 a:link { color: #258aaf; text-decoration: none} 27 a:hover { color: #459aaf; text-decoration: underline } 28 a:visited { color: #154a5f; text-decoration: none} 33 .entries_header { background-color: #dddddd; text-align: center} 38 .toc_deprecated { text-decoration:line-through; } 57 .entry_name_deprecated { text-decoration:line-through; } 80 text-align: center; font-size: 1.1em; margin-left: 0em; margin-right: 0em; } 112 def br(text): 113 return re.sub(r"(\r?\n)(\r?\n)", r"\1<br>\2<br>", text) [all …]
|
D | metadata_helpers_test.py | 141 text = "*" * len(node_set) + "\n" 142 return text
|
/system/connectivity/shill/ |
D | crypto_rot47_unittest.cc | 44 string text; in TEST_F() local 45 EXPECT_TRUE(crypto_.Encrypt(kPlainText, &text)); in TEST_F() 46 EXPECT_EQ(kCipherText, text); in TEST_F() 47 EXPECT_TRUE(crypto_.Encrypt(kEmpty, &text)); in TEST_F() 48 EXPECT_EQ(kEmpty, text); in TEST_F() 52 string text; in TEST_F() local 53 EXPECT_TRUE(crypto_.Decrypt(kCipherText, &text)); in TEST_F() 54 EXPECT_EQ(kPlainText, text); in TEST_F() 55 EXPECT_TRUE(crypto_.Decrypt(kEmpty, &text)); in TEST_F() 56 EXPECT_EQ(kEmpty, text); in TEST_F()
|
D | crypto_des_cbc.cc | 84 string text = data.data(); in Decrypt() local 86 if (!base::EndsWith(text, kSentinel, base::CompareCase::SENSITIVE)) { in Decrypt() 90 text.erase(text.size() - strlen(kSentinel), strlen(kSentinel)); in Decrypt() 92 *plaintext = text; in Decrypt()
|
/system/bt/stack/smp/ |
D | smp_cmac.c | 37 UINT8 *text; member 119 osi_free(cmac_cb.text); in cmac_aes_cleanup() 143 smp_xor_128(&cmac_cb.text[(cmac_cb.round - i)*BT_OCTET16_LEN], x); /* Mi' := Mi (+) X */ in cmac_aes_k_calculate() 145 …if (!SMP_Encrypt(key, BT_OCTET16_LEN, &cmac_cb.text[(cmac_cb.round - i)*BT_OCTET16_LEN], BT_OCTET1… in cmac_aes_k_calculate() 195 smp_xor_128(&cmac_cb.text[0], k1); in cmac_prepare_last_block() 199 padding(&cmac_cb.text[0], (UINT8)(cmac_cb.len % 16)); in cmac_prepare_last_block() 201 smp_xor_128(&cmac_cb.text[0], k2); in cmac_prepare_last_block() 305 cmac_cb.text = (UINT8 *)osi_calloc(len); in aes_cipher_msg_auth_code() 310 memcpy(&cmac_cb.text[diff] , input, (int)length); in aes_cipher_msg_auth_code()
|
/system/webservd/libwebserv/ |
D | response.cc | 63 const std::string& text, in ReplyWithText() argument 65 Reply(status_code, brillo::MemoryStream::OpenCopyOf(text, nullptr), in ReplyWithText() 70 std::string text; in ReplyWithJson() local 72 *json, base::JSONWriter::OPTIONS_PRETTY_PRINT, &text); in ReplyWithJson() 77 ReplyWithText(status_code, text, mime_type); in ReplyWithJson()
|
D | response.h | 57 const std::string& text,
|
D | response_impl.h | 44 const std::string& text,
|
/system/core/init/parser/ |
D | tokenizer.cpp | 58 current_.text.clear(); in Next() 84 current_.text.clear(); in Next() 118 current_.text.clear(); in StartText() 125 current_.text.append(data_, tok_start_, pos_ - tok_start_); in EndText()
|
D | tokenizer.h | 45 std::string text; member
|
/system/core/libcutils/ |
D | config_utils.c | 117 char *text; member 225 cs->text = s; in _lex() 236 tok == T_TEXT ? cs->text : ""); 267 node = config_find(root, cs->text); in parse_expr() 269 node = _config_create(root, cs->text); in parse_expr() 276 node = _config_create(node, cs->text); in parse_expr() 280 node->value = cs->text; in parse_expr()
|
D | sched_policy.c | 83 char text[22]; in add_tid_to_cgroup() local 84 char *end = text + sizeof(text) - 1; in add_tid_to_cgroup()
|
/system/sepolicy/tools/sepolicy-analyze/ |
D | neverallow.c | 370 static int check_neverallows(policydb_t *policydb, char *text, char *end) in check_neverallows() argument 377 p = text; in check_neverallows() 443 char *text, *end; in check_neverallows_file() local 455 text = mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in check_neverallows_file() 456 end = text + sb.st_size; in check_neverallows_file() 457 if (text == MAP_FAILED) { in check_neverallows_file() 463 return check_neverallows(policydb, text, end); in check_neverallows_file() 468 char *text, *end; in check_neverallows_string() local 469 text = string; in check_neverallows_string() 470 end = text + len; in check_neverallows_string() [all …]
|
/system/core/init/ |
D | parser.cpp | 61 goto text; in next_token() 69 text: in next_token() 70 state->text = s = x; in next_token()
|
D | parser.h | 27 char *text; member
|
/system/connectivity/shill/mobile_operator_db/ |
D | serviceproviders_converter.py | 240 name_node.text = name 258 names = [(name_node.text, name_node.get(u'xml:lang')) for 395 cmp(sorted([z.text for z in x.findall(u'name')]), 396 sorted([z.text for z in y.findall(u'name')]))) 434 if name_node.text: 435 name_list.append(name_node.text) 500 self._SpewString(u'gateway', gateway_node.text) 502 self._SpewString(u'username', username_node.text) 504 self._SpewString(u'password', password_node.text) 506 self._SpewString(u'dns', dns_node.text) [all …]
|
/system/connectivity/shill/shims/ |
D | ppp.cc | 182 char text[INET_ADDRSTRLEN]; in ConvertIPToText() local 183 inet_ntop(AF_INET, addr, text, INET_ADDRSTRLEN); in ConvertIPToText() 184 return text; in ConvertIPToText()
|
/system/core/libutils/ |
D | RefBase.cpp | 249 String8 text; in printRefs() local 255 text.append(buf); in printRefs() 256 printRefsLocked(&text, mStrongRefs); in printRefs() 258 text.append(buf); in printRefs() 259 printRefsLocked(&text, mWeakRefs); in printRefs() 267 write(rc, text.string(), text.length()); in printRefs()
|
/system/core/include/android/ |
D | log.h | 94 int __android_log_write(int prio, const char *tag, const char *text);
|
/system/extras/simpleperf/ |
D | report.py | 152 label = Label(frame, text=line, font=font) 156 label = Label(frame, text='', font=font) 160 label = Label(frame, text=' ' + title_line, font=font)
|
/system/core/libpixelflinger/arch-arm64/ |
D | col32cb16blend.S | 28 .text
|
/system/core/include/log/ |
D | log.h | 642 #define android_writeLog(prio, tag, text) \ argument 643 __android_log_write(prio, tag, text) 688 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
|
/system/core/libpixelflinger/ |
D | col32cb16blend.S | 18 .text
|
D | rotate90CW_4x4_16v6.S | 19 .text
|