Home
last modified time | relevance | path

Searched refs:text_string (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/autotest/server/site_tests/cellular_Callbox_AssertSMS/
H A Dcellular_Callbox_AssertSMS.py51 text_string = "SMSWRAPPER" + str(time.time()) + "SMSWRAPPER"
53 grep_out = host.run("cat /var/log/net.log | grep %s" % text_string)
59 % (text_string, grep_out))
60 self.simulation.send_sms(text_string)
62 grep_out = host.run("cat /var/log/net.log | grep %s" % text_string)
66 % text_string)
/aosp_15_r20/external/strace/tests-mx32/
H A Dipc_msgbuf.c39 #define text_string "STRACE_STRING" macro
40 #define msgsz sizeof(text_string)
97 .mtext = text_string in main()
108 printf("msgsnd\\(%d, \\{%lld, \"" text_string "\\\\0\"\\}, 14, 0\\)" in main()
116 printf("msgrcv\\(%d, \\{%lld, \"" text_string "\\\\0\"\\}, 14, %lld" in main()
/aosp_15_r20/external/strace/tests/
H A Dipc_msgbuf.c39 #define text_string "STRACE_STRING" macro
40 #define msgsz sizeof(text_string)
97 .mtext = text_string in main()
108 printf("msgsnd\\(%d, \\{%lld, \"" text_string "\\\\0\"\\}, 14, 0\\)" in main()
116 printf("msgrcv\\(%d, \\{%lld, \"" text_string "\\\\0\"\\}, 14, %lld" in main()
/aosp_15_r20/external/strace/tests-m32/
H A Dipc_msgbuf.c39 #define text_string "STRACE_STRING" macro
40 #define msgsz sizeof(text_string)
97 .mtext = text_string in main()
108 printf("msgsnd\\(%d, \\{%lld, \"" text_string "\\\\0\"\\}, 14, 0\\)" in main()
116 printf("msgrcv\\(%d, \\{%lld, \"" text_string "\\\\0\"\\}, 14, %lld" in main()
/aosp_15_r20/external/tensorflow/tensorflow/security/fuzzing/
H A DParseAttrValue_fuzz.cc47 std::string text_string = fuzzed_data.ConsumeRemainingBytesAsString(); in LLVMFuzzerTestOneInput() local
48 tensorflow::ParseAttrValue(type, text_string, &out); in LLVMFuzzerTestOneInput()
/aosp_15_r20/external/python/bumble/tests/
Dsdp_test.py156 e = DataElement.text_string(b'hello')
163 [DataElement.signed_integer(0, 1), DataElement.text_string(b'hello')]
168 [DataElement.signed_integer(0, 1), DataElement.text_string(b'hello')]
/aosp_15_r20/external/cronet/net/dns/
H A Ddns_test_util.cc156 for (const std::string& text_string : text_strings) { in BuildTestTextRecord() local
157 DCHECK(!text_string.empty()); in BuildTestTextRecord()
159 rdata += base::checked_cast<unsigned char>(text_string.size()); in BuildTestTextRecord()
160 rdata += text_string; in BuildTestTextRecord()
/aosp_15_r20/external/pytorch/torch/utils/tensorboard/
H A Dwriter.py801 def add_text(self, tag, text_string, global_step=None, walltime=None): argument
817 text(tag, text_string), global_step, walltime
/aosp_15_r20/external/cronet/third_party/protobuf/python/google/protobuf/internal/
H A Dtext_format_test.py1845 text_string = text_format.MessageToString(message)
1846 text_format.Parse(text_string, message2)
/aosp_15_r20/external/protobuf/python/google/protobuf/internal/
H A Dtext_format_test.py1845 text_string = text_format.MessageToString(message)
1846 text_format.Parse(text_string, message2)
/aosp_15_r20/external/python/bumble/bumble/
Dsdp.py237 def text_string(value: bytes) -> DataElement: member in DataElement