Home
last modified time | relevance | path

Searched refs:txt (Results 1 - 25 of 519) sorted by relevance

12345678910>>...21

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dcli.c54 os_free(e->txt); in cli_txt_list_free()
69 const char *txt) in cli_txt_list_get()
74 if (os_strcmp(e->txt, txt) == 0) in cli_txt_list_get()
81 void cli_txt_list_del(struct dl_list *txt_list, const char *txt) in cli_txt_list_del() argument
85 e = cli_txt_list_get(txt_list, txt); in cli_txt_list_del()
91 void cli_txt_list_del_addr(struct dl_list *txt_list, const char *txt) in cli_txt_list_del_addr() argument
96 if (hwaddr_aton(txt, addr) < 0) in cli_txt_list_del_addr()
103 void cli_txt_list_del_word(struct dl_list *txt_list, const char *txt, in cli_txt_list_del_word() argument
109 end = os_strchr(txt, separato in cli_txt_list_del_word()
68 cli_txt_list_get(struct dl_list *txt_list, const char *txt) cli_txt_list_get() argument
120 cli_txt_list_add(struct dl_list *txt_list, const char *txt) cli_txt_list_add() argument
140 cli_txt_list_add_addr(struct dl_list *txt_list, const char *txt) cli_txt_list_add_addr() argument
152 cli_txt_list_add_word(struct dl_list *txt_list, const char *txt, int separator) cli_txt_list_add_word() argument
[all...]
H A Dcli.h19 char *txt; member
26 cli_txt_list_get(struct dl_list *txt_list, const char *txt);
28 void cli_txt_list_del(struct dl_list *txt_list, const char *txt);
29 void cli_txt_list_del_addr(struct dl_list *txt_list, const char *txt);
30 void cli_txt_list_del_word(struct dl_list *txt_list, const char *txt,
33 int cli_txt_list_add(struct dl_list *txt_list, const char *txt);
34 int cli_txt_list_add_addr(struct dl_list *txt_list, const char *txt);
35 int cli_txt_list_add_word(struct dl_list *txt_list, const char *txt,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dcli.c54 os_free(e->txt); in cli_txt_list_free()
69 const char *txt) in cli_txt_list_get()
74 if (os_strcmp(e->txt, txt) == 0) in cli_txt_list_get()
81 void cli_txt_list_del(struct dl_list *txt_list, const char *txt) in cli_txt_list_del() argument
85 e = cli_txt_list_get(txt_list, txt); in cli_txt_list_del()
91 void cli_txt_list_del_addr(struct dl_list *txt_list, const char *txt) in cli_txt_list_del_addr() argument
96 if (hwaddr_aton(txt, addr) < 0) in cli_txt_list_del_addr()
103 void cli_txt_list_del_word(struct dl_list *txt_list, const char *txt, in cli_txt_list_del_word() argument
109 end = os_strchr(txt, separato in cli_txt_list_del_word()
68 cli_txt_list_get(struct dl_list *txt_list, const char *txt) cli_txt_list_get() argument
120 cli_txt_list_add(struct dl_list *txt_list, const char *txt) cli_txt_list_add() argument
140 cli_txt_list_add_addr(struct dl_list *txt_list, const char *txt) cli_txt_list_add_addr() argument
152 cli_txt_list_add_word(struct dl_list *txt_list, const char *txt, int separator) cli_txt_list_add_word() argument
[all...]
H A Dcli.h19 char *txt; member
26 cli_txt_list_get(struct dl_list *txt_list, const char *txt);
28 void cli_txt_list_del(struct dl_list *txt_list, const char *txt);
29 void cli_txt_list_del_addr(struct dl_list *txt_list, const char *txt);
30 void cli_txt_list_del_word(struct dl_list *txt_list, const char *txt,
33 int cli_txt_list_add(struct dl_list *txt_list, const char *txt);
34 int cli_txt_list_add_addr(struct dl_list *txt_list, const char *txt);
35 int cli_txt_list_add_word(struct dl_list *txt_list, const char *txt,
/third_party/googletest/googletest/test/
H A Dgoogletest-failfast-unittest.py119 txt, _ = RunAndReturnOutput()
120 self.assertIn('22 FAILED TEST', txt)
123 txt, _ = RunAndReturnOutput(test_suite='HasSimpleTest', fail_fast=True)
124 self.assertIn('1 FAILED TEST', txt)
125 self.assertIn('[ SKIPPED ] 3 tests', txt)
127 txt, _ = RunAndReturnOutput(test_suite='HasSimpleTest', fail_fast=False)
128 self.assertIn('4 FAILED TEST', txt)
129 self.assertNotIn('[ SKIPPED ]', txt)
136 txt, _ = RunAndReturnOutput('HasSimpleTest')
137 self.assertIn('1 FAILED TEST', txt)
[all...]
H A Dgoogletest-global-environment-unittest.py58 txt = RunAndReturnOutput()
61 self.assertIn('Canned environment setup error', txt)
65 self.assertIn('[ SKIPPED ] 1 test', txt)
66 self.assertIn('[ PASSED ] 0 tests', txt)
69 self.assertNotIn('Unexpected call', txt)
76 txt = RunAndReturnOutput([
98 self.assertRegex(txt, expected_pattern)
105 txt = RunAndReturnOutput([
122 self.assertRegex(txt, expected_pattern)
124 self.assertEqual(len(re.findall('Global test environment set-up', txt)),
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dtls_openssl_ocsp.c25 static void tls_show_errors(int level, const char *func, const char *txt) in tls_show_errors() argument
30 func, txt, ERR_error_string(ERR_get_error(), NULL)); in tls_show_errors()
229 char *txt; in mem_bio_to_str() local
234 txt = os_malloc(rlen + 1); in mem_bio_to_str()
235 if (!txt) { in mem_bio_to_str()
240 res = BIO_read(out, txt, rlen); in mem_bio_to_str()
243 os_free(txt); in mem_bio_to_str()
247 txt[res] = '\0'; in mem_bio_to_str()
248 return txt; in mem_bio_to_str()
403 char *txt; in issuer_match() local
498 char *txt; check_ocsp_resp() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dtls_openssl_ocsp.c25 static void tls_show_errors(int level, const char *func, const char *txt) in tls_show_errors() argument
30 func, txt, ERR_error_string(ERR_get_error(), NULL)); in tls_show_errors()
229 char *txt; in mem_bio_to_str() local
234 txt = os_malloc(rlen + 1); in mem_bio_to_str()
235 if (!txt) { in mem_bio_to_str()
240 res = BIO_read(out, txt, rlen); in mem_bio_to_str()
243 os_free(txt); in mem_bio_to_str()
247 txt[res] = '\0'; in mem_bio_to_str()
248 return txt; in mem_bio_to_str()
403 char *txt; in issuer_match() local
498 char *txt; check_ocsp_resp() local
[all...]
/third_party/icu/icu4c/source/data/sprep/
H A Dsprepfiles.mk5 # A list of txt's to build
19 # | SPREP_SOURCE_LOCAL = myStringPrep.txt ...
23 # | SPREP_SOURCE = rfc4518.txt
27 rfc3491.txt rfc3530cs.txt rfc3530csci.txt rfc3530mixp.txt rfc3722.txt \
28 rfc3920node.txt rfc3920res.txt rfc401
[all...]
/third_party/skia/third_party/externals/icu/source/data/sprep/
H A Dsprepfiles.mk5 # A list of txt's to build
19 # | SPREP_SOURCE_LOCAL = myStringPrep.txt ...
23 # | SPREP_SOURCE = rfc4518.txt
27 rfc3491.txt rfc3530cs.txt rfc3530csci.txt rfc3530mixp.txt rfc3722.txt \
28 rfc3920node.txt rfc3920res.txt rfc401
[all...]
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/resolver/
H A Dresolver_test.go147 file.txt:1:6 'A' already declared
148 First declared here: file.txt:1:6
154 file.txt:1:13 'X' already declared
155 First declared here: file.txt:1:6`,
159 file.txt:1:3 unknown decoration
164 file.txt:1:3 expected a single value for 'display' decoration`,
170 file.txt:2:6 'e' already declared
171 First declared here: file.txt:1:6`,
177 file.txt:2:7 'X' already declared
178 First declared here: file.txt
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
H A Dpread.c29 const char *txt = "This is pread_0100 test."; in pread_0100() local
38 pwrite(fd, txt, strlen(txt), 0); in pread_0100()
41 EXPECT_EQ("pread_0100", cnt, strlen(txt)); in pread_0100()
42 EXPECT_STREQ("pread_0100", txt, buffer); in pread_0100()
54 const char *txt = "This is pread_0200 test."; in pread_0200() local
63 pwrite(fd, txt, strlen(txt), 0); in pread_0200()
65 EXPECT_EQ("pread_0200", cnt, strlen(txt)); in pread_0200()
66 EXPECT_STREQ("pread_0200", txt, buffe in pread_0200()
78 const char *txt = "This is pread_0300 test."; pread_0300() local
[all...]
H A Dpwrite.c37 const char *txt = "This is pwrite_0100 test."; in pwrite_0100() local
46 size_t cnt = pwrite(fd, txt, strlen(txt), 0); in pwrite_0100()
47 EXPECT_EQ("pwrite_0100", cnt, strlen(txt)); in pwrite_0100()
51 EXPECT_EQ("pwrite_0100", cnt, strlen(txt)); in pwrite_0100()
52 EXPECT_STREQ("pwrite_0100", txt, buffer); in pwrite_0100()
64 const char *txt = "This is pwrite_0200 test."; in pwrite_0200() local
65 size_t cnt = pwrite(-1, txt, strlen(txt), 0); in pwrite_0200()
74 cnt = pwrite(fd, txt, in pwrite_0200()
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/
H A Dtest_fixture.h62 SpirvVector CompileSuccessfully(const std::string& txt, in CompileSuccessfully() argument
67 spvTextToBinary(ScopedContext(env).context, txt.c_str(), txt.size(), in CompileSuccessfully()
69 EXPECT_EQ(SPV_SUCCESS, status) << txt; in CompileSuccessfully()
82 std::string CompileFailure(const std::string& txt, in CompileFailure() argument
87 spvTextToBinary(ScopedContext(env).context, txt.c_str(), in CompileFailure()
88 txt.size(), &binary, &diagnostic)) in CompileFailure()
89 << txt; in CompileFailure()
97 const std::string& txt, in EncodeAndDecodeSuccessfully()
104 spv_result_t error = spvTextToBinary(context.context, txt in EncodeAndDecodeSuccessfully()
96 EncodeAndDecodeSuccessfully( const std::string& txt, uint32_t disassemble_options = SPV_BINARY_TO_TEXT_OPTION_NONE, spv_target_env env = SPV_ENV_UNIVERSAL_1_0) EncodeAndDecodeSuccessfully() argument
132 EncodeSuccessfullyDecodeFailed( const std::string& txt, const SpirvVector& words_to_append) EncodeSuccessfullyDecodeFailed() argument
155 CompiledInstructions(const std::string& txt, spv_target_env env = SPV_ENV_UNIVERSAL_1_0) CompiledInstructions() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
H A Dtest_fixture.h62 SpirvVector CompileSuccessfully(const std::string& txt, in CompileSuccessfully() argument
67 spvTextToBinary(ScopedContext(env).context, txt.c_str(), txt.size(), in CompileSuccessfully()
69 EXPECT_EQ(SPV_SUCCESS, status) << txt; in CompileSuccessfully()
82 std::string CompileFailure(const std::string& txt, in CompileFailure() argument
87 spvTextToBinary(ScopedContext(env).context, txt.c_str(), in CompileFailure()
88 txt.size(), &binary, &diagnostic)) in CompileFailure()
89 << txt; in CompileFailure()
97 const std::string& txt, in EncodeAndDecodeSuccessfully()
104 spv_result_t error = spvTextToBinary(context.context, txt in EncodeAndDecodeSuccessfully()
96 EncodeAndDecodeSuccessfully( const std::string& txt, uint32_t disassemble_options = SPV_BINARY_TO_TEXT_OPTION_NONE, spv_target_env env = SPV_ENV_UNIVERSAL_1_0) EncodeAndDecodeSuccessfully() argument
132 EncodeSuccessfullyDecodeFailed( const std::string& txt, const SpirvVector& words_to_append) EncodeSuccessfullyDecodeFailed() argument
155 CompiledInstructions(const std::string& txt, spv_target_env env = SPV_ENV_UNIVERSAL_1_0) CompiledInstructions() argument
[all...]
/third_party/mesa3d/.gitlab-ci/
H A Ddeqp-runner.sh11 echo 'GPU_VERSION must be set to something like "llvmpipe" or "freedreno-a630" (the name used in .gitlab-ci/gpu-version-*.txt)'
59 MUSTPASS=/deqp/mustpass/vk-$DEQP_VARIANT.txt
63 MUSTPASS=/deqp/mustpass/$DEQP_VER-$DEQP_VARIANT.txt
66 MUSTPASS=/deqp/mustpass/$DEQP_VER-$DEQP_VARIANT.txt
69 MUSTPASS=/deqp/mustpass/$DEQP_VER-$DEQP_VARIANT.txt
73 cp $MUSTPASS /tmp/case-list.txt
79 sed -ni 1~$DEQP_FRACTION"p" /tmp/case-list.txt
85 sed -ni $CI_NODE_INDEX~$CI_NODE_TOTAL"p" /tmp/case-list.txt
89 sed -ni "/$DEQP_CASELIST_FILTER/p" /tmp/case-list.txt
93 sed -ni "/$DEQP_CASELIST_INV_FILTER/!p" /tmp/case-list.txt
[all...]
/third_party/node/test/parallel/
H A Dtest-crypto-cipher-decipher.js34 let txt = decipher.update(ciph, 'hex', 'utf8');
35 txt += decipher.final('utf8');
37 assert.strictEqual(txt, plaintext);
49 txt = dStream.read().toString('utf8');
51 assert.strictEqual(txt, plaintext);
70 let txt = decipher.update(ciph, 'base64', 'utf8');
71 txt += decipher.final('utf8');
73 assert.strictEqual(txt, plaintext);
204 let txt;
205 txt
[all...]
/third_party/pulseaudio/src/modules/macosx/
H A Dmodule-bonjour-publish.c115 static void txt_record_server_data(pa_core *c, TXTRecordRef *txt) { in txt_record_server_data() argument
121 TXTRecordSetValue(txt, "server-version", strlen(PACKAGE_NAME" "PACKAGE_VERSION), PACKAGE_NAME" "PACKAGE_VERSION); in txt_record_server_data()
124 TXTRecordSetValue(txt, "user-name", strlen(t), t); in txt_record_server_data()
128 TXTRecordSetValue(txt, "machine-id", strlen(t), t); in txt_record_server_data()
132 TXTRecordSetValue(txt, "uname", strlen(t), t); in txt_record_server_data()
136 TXTRecordSetValue(txt, "fqdn", strlen(t), t); in txt_record_server_data()
139 TXTRecordSetValue(txt, "cookie", strlen(s), s); in txt_record_server_data()
193 TXTRecordRef txt; in publish_service() local
215 TXTRecordCreate(&txt, 0, NULL); in publish_service()
217 txt_record_server_data(s->userdata->core, &txt); in publish_service()
365 TXTRecordRef txt; publish_main_service() local
[all...]
/third_party/ltp/testcases/kernel/controllers/cpuctl/
H A Drun_cpuctl_stress_test.sh97 echo `date` >> $LTPROOT/output/cpuctl_results_$FILE.txt;
120 echo `date` >> $LTPROOT/output/cpuctl_results_$FILE.txt;
127 echo `date` >> $LTPROOT/output/cpuctl_results_$FILE.txt;
151 echo TEST NAME:- $TEST_NAME: $TEST_NUM >> $LTPROOT/output/cpuctl_results_$FILE.txt;
152 echo Test $TEST_NUM: NUM_GROUPS=$NUM_GROUPS +1 \(DEF\)>> $LTPROOT/output/cpuctl_results_$FILE.txt;
153 echo Test $TEST_NUM: TASKS PER GROUP=$TASKS_IN_GROUP >> $LTPROOT/output/cpuctl_results_$FILE.txt;
154 echo "==========================================" >> $LTPROOT/output/cpuctl_results_$FILE.txt;
166 >>$LTPROOT/output/cpuctl_results_$FILE.txt &
196 ./cpuctl_def_task03 >>$LTPROOT/output/cpuctl_results_$FILE.txt &
210 echo TEST NAME:- $TEST_NAME: $TEST_NUM >> $LTPROOT/output/cpuctl_results_$FILE.txt;
[all...]
/third_party/node/deps/openssl/openssl/crypto/err/
H A Derr_prn.c60 void ERR_add_error_txt(const char *separator, const char *txt) in ERR_add_error_txt() argument
76 const char *curr = txt, *next = txt; in ERR_add_error_txt()
107 while (*next != '\0' && (size_t)(next - txt) <= available_len) { in ERR_add_error_txt()
117 if ((size_t)(next - txt) <= available_len) in ERR_add_error_txt()
122 if (curr != txt) { in ERR_add_error_txt()
123 tmp = OPENSSL_strndup(txt, curr - txt); in ERR_add_error_txt()
130 txt = curr; in ERR_add_error_txt()
133 tmp = OPENSSL_strndup(txt, nex in ERR_add_error_txt()
[all...]
/third_party/openssl/crypto/err/
H A Derr_prn.c60 void ERR_add_error_txt(const char *separator, const char *txt) in ERR_add_error_txt() argument
76 const char *curr = txt, *next = txt; in ERR_add_error_txt()
107 while (*next != '\0' && (size_t)(next - txt) <= available_len) { in ERR_add_error_txt()
117 if ((size_t)(next - txt) <= available_len) in ERR_add_error_txt()
122 if (curr != txt) { in ERR_add_error_txt()
123 tmp = OPENSSL_strndup(txt, curr - txt); in ERR_add_error_txt()
130 txt = curr; in ERR_add_error_txt()
133 tmp = OPENSSL_strndup(txt, nex in ERR_add_error_txt()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dcommon.c40 static const char * hwaddr_parse(const char *txt, u8 *addr) in hwaddr_parse() argument
47 a = hex2byte(txt); in hwaddr_parse()
50 txt += 2; in hwaddr_parse()
52 if (i < ETH_ALEN - 1 && *txt++ != ':') in hwaddr_parse()
55 return txt; in hwaddr_parse()
61 * @txt: MAC address as a string (e.g., "00:11:22:33:44:55")
65 int hwaddr_aton(const char *txt, u8 *addr) in hwaddr_aton() argument
67 return hwaddr_parse(txt, addr) ? 0 : -1; in hwaddr_aton()
73 * @txt: MAC address with optional mask as a string (e.g., "00:11:22:33:44:55/ff:ff:ff:ff:00:00")
79 int hwaddr_masked_aton(const char *txt, u argument
113 hwaddr_compact_aton(const char *txt, u8 *addr) hwaddr_compact_aton() argument
138 hwaddr_aton2(const char *txt, u8 *addr) hwaddr_aton2() argument
476 printf_encode(char *txt, size_t maxlen, const u8 *data, size_t len) printf_encode() argument
[all...]
/third_party/spirv-tools/test/
H A Dtest_fixture.h63 SpirvVector CompileSuccessfully(const std::string& txt, in CompileSuccessfully() argument
68 spvTextToBinary(ScopedContext(env).context, txt.c_str(), txt.size(), in CompileSuccessfully()
70 EXPECT_EQ(SPV_SUCCESS, status) << txt; in CompileSuccessfully()
83 std::string CompileFailure(const std::string& txt, in CompileFailure() argument
88 spvTextToBinary(ScopedContext(env).context, txt.c_str(), in CompileFailure()
89 txt.size(), &binary, &diagnostic)) in CompileFailure()
90 << txt; in CompileFailure()
112 const std::string& txt, in EncodeAndDecodeSuccessfully()
119 spv_result_t error = spvTextToBinary(context.context, txt in EncodeAndDecodeSuccessfully()
111 EncodeAndDecodeSuccessfully( const std::string& txt, uint32_t disassemble_options = SPV_BINARY_TO_TEXT_OPTION_NONE, spv_target_env env = SPV_ENV_UNIVERSAL_1_0, bool flip_words = false) EncodeAndDecodeSuccessfully() argument
149 EncodeSuccessfullyDecodeFailed( const std::string& txt, const SpirvVector& words_to_append) EncodeSuccessfullyDecodeFailed() argument
172 CompiledInstructions(const std::string& txt, spv_target_env env = SPV_ENV_UNIVERSAL_1_0) CompiledInstructions() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
H A Dest.c139 res = http_download_file(ctx->http, buf, "Cert/est-cacerts.txt", in est_load_cacerts()
154 resp = os_readfile("Cert/est-cacerts.txt", &resp_len); in est_load_cacerts()
156 wpa_printf(MSG_INFO, "Could not read Cert/est-cacerts.txt"); in est_load_cacerts()
192 unlink("Cert/est-cacerts.txt"); in est_load_cacerts()
252 char txt[100]; in add_csrattrs_oid() local
258 res = OBJ_obj2txt(txt, sizeof(txt), oid, 1); in add_csrattrs_oid()
259 if (res < 0 || res >= (int) sizeof(txt)) in add_csrattrs_oid()
262 if (os_strcmp(txt, "1.2.840.113549.1.9.7") == 0) { in add_csrattrs_oid()
264 } else if (os_strcmp(txt, "1. in add_csrattrs_oid()
276 char txt[100]; add_csrattrs_ext_req() local
306 char txt[100], txt2[100]; add_csrattrs_attr() local
511 char *txt; generate_csr() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
H A Dest.c139 res = http_download_file(ctx->http, buf, "Cert/est-cacerts.txt", in est_load_cacerts()
154 resp = os_readfile("Cert/est-cacerts.txt", &resp_len); in est_load_cacerts()
156 wpa_printf(MSG_INFO, "Could not read Cert/est-cacerts.txt"); in est_load_cacerts()
192 unlink("Cert/est-cacerts.txt"); in est_load_cacerts()
252 char txt[100]; in add_csrattrs_oid() local
258 res = OBJ_obj2txt(txt, sizeof(txt), oid, 1); in add_csrattrs_oid()
259 if (res < 0 || res >= (int) sizeof(txt)) in add_csrattrs_oid()
262 if (os_strcmp(txt, "1.2.840.113549.1.9.7") == 0) { in add_csrattrs_oid()
264 } else if (os_strcmp(txt, "1. in add_csrattrs_oid()
276 char txt[100]; add_csrattrs_ext_req() local
306 char txt[100], txt2[100]; add_csrattrs_attr() local
511 char *txt; generate_csr() local
[all...]

Completed in 11 milliseconds

12345678910>>...21