Home
last modified time | relevance | path

Searched refs:strings (Results 1 – 25 of 848) sorted by relevance

12345678910>>...34

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DARMAttributeParser.cpp83 static const char *strings[] = { in CPU_arch() local
121 static const char *strings[] = { in FP_arch() local
145 static const char *strings[] = { in PCS_config() local
195 makeArrayRef(strings)); in ABI_FP_user_exceptions()
202 makeArrayRef(strings)); in ABI_FP_number_model()
212 if (value < array_lengthof(strings)) in ABI_align_needed()
213 description = strings[value]; in ABI_align_needed()
231 if (value < array_lengthof(strings)) in ABI_align_preserved()
232 description = std::string(strings[value]); in ABI_align_preserved()
267 static const char *strings[] = { in ABI_optimization_goals() local
[all …]
/freebsd-13.1/crypto/heimdal/kadmin/
H A Dmod.c71 if (strings->num_strings == 1 && strings->strings[0][0] == '\0') { in add_constrained_delegation()
79 calloc(strings->num_strings, in add_constrained_delegation()
84 ret = krb5_parse_name(contextp, strings->strings[i], &p); in add_constrained_delegation()
121 if (strings->num_strings == 1 && strings->strings[0][0] == '\0') { in add_aliases()
126 calloc(strings->num_strings, in add_aliases()
131 ret = krb5_parse_name(contextp, strings->strings[i], &p); in add_aliases()
134 strings->strings[i]); in add_aliases()
139 strings->strings[i]); in add_aliases()
170 if (strings->num_strings == 1 && strings->strings[0][0] == '\0') { in add_pkinit_acl()
175 calloc(strings->num_strings, in add_pkinit_acl()
[all …]
/freebsd-13.1/crypto/heimdal/lib/roken/
H A Dgetusershell.c103 if (strings != NULL) in endusershell()
104 free(strings); in endusershell()
105 strings = NULL; in endusershell()
129 free(strings); in initshells()
130 strings = NULL; in initshells()
141 strings = malloc(cp - tmp); in initshells()
142 if(strings == NULL) { in initshells()
147 memcpy(strings, tmp, cp - tmp); in initshells()
164 free(strings); in initshells()
165 strings = NULL; in initshells()
[all …]
/freebsd-13.1/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dstrings-table.c46 DB *strings; in svn_fs_bdb__open_strings_table() local
53 BDB_ERR(strings->set_flags(strings, DB_DUP)); in svn_fs_bdb__open_strings_table()
55 BDB_ERR((strings->open)(SVN_BDB_OPEN_PARAMS(strings, NULL), in svn_fs_bdb__open_strings_table()
70 *strings_p = strings; in svn_fs_bdb__open_strings_table()
95 bfd->strings->cursor(bfd->strings, trail->db_txn, in locate_key()
301 bfd->strings->cursor(bfd->strings, trail->db_txn, in get_key_and_bump()
381 db_err = bfd->strings->del(bfd->strings, trail->db_txn, &query, 0); in svn_fs_bdb__string_clear()
400 bfd->strings->put(bfd->strings, trail->db_txn, in svn_fs_bdb__string_clear()
456 db_err = bfd->strings->del(bfd->strings, trail->db_txn, in svn_fs_bdb__string_delete()
492 bfd->strings->cursor(bfd->strings, trail->db_txn, in svn_fs_bdb__string_copy()
[all …]
/freebsd-13.1/sbin/ifconfig/
H A Dsfp.c61 struct ifconfig_sfp_info_strings strings; in sfp_status() local
69 ifconfig_sfp_get_sfp_info_strings(&info, &strings); in sfp_status()
73 ifconfig_sfp_physical_spec(&info, &strings), in sfp_status()
74 strings.sfp_conn); in sfp_status()
84 printf("\tcompliance level: %s\n", strings.sfp_rev); in sfp_status()
88 ifconfig_sfp_physical_spec(&info, &strings)); in sfp_status()
89 printf("Length: %s\n", strings.sfp_fc_len); in sfp_status()
90 printf("Tech: %s\n", strings.sfp_cab_tech); in sfp_status()
91 printf("Media: %s\n", strings.sfp_fc_media); in sfp_status()
92 printf("Speed: %s\n", strings.sfp_fc_speed); in sfp_status()
/freebsd-13.1/contrib/netbsd-tests/lib/libexecinfo/
H A Dt_backtrace.c71 char **strings; in myfunc3() local
82 strings = backtrace_symbols_fmt(buffer, nptrs, "%n"); in myfunc3()
84 ATF_CHECK(strings != NULL); in myfunc3()
90 printf("#%zu: %s\n", j, strings[j]); in myfunc3()
95 ATF_CHECK_STREQ(strings[0], "myfunc3"); in myfunc3()
96 ATF_CHECK_STREQ(strings[1], "myfunc2"); in myfunc3()
99 ATF_CHECK_STREQ(strings[j], "myfunc1"); in myfunc3()
103 strcmp(strings[j], frames[i].name)) { in myfunc3()
107 ATF_CHECK_STREQ(strings[j], frames[i].name); in myfunc3()
110 free(strings); in myfunc3()
/freebsd-13.1/usr.bin/xstr/
H A Dxstr.c126 if (strings == NULL) in main()
128 fdesc = mkstemp(strings); in main()
148 if (strings[0] == '/') in main()
149 ignore(unlink(strings)); in main()
385 err(4, "%s", strings); in flushsh()
393 err(4, "%s", strings); in flushsh()
397 err(4, "%s", strings); in flushsh()
436 err(5, "%s", strings); in xsdotc()
447 warn("%s", strings); in xsdotc()
488 if (strings[0] == '/') in onintr()
[all …]
/freebsd-13.1/sbin/ipf/libipf/
H A Dsave_file.c30 file_parse(char **strings) in file_parse() argument
38 if (strings[0] != NULL && strings[0][0] != '\0') { in file_parse()
40 if (!strncmp(strings[0], "raw://", 6)) { in file_parse()
42 ctx->path = strdup(strings[0] + 6); in file_parse()
44 } else if (!strncmp(strings[0], "file://", 7)) { in file_parse()
45 ctx->path = strdup(strings[0] + 7); in file_parse()
H A Dsave_execute.c25 execute_parse(char **strings) in execute_parse() argument
31 if (ctx != NULL && strings[0] != NULL && strings[0][0] != '\0') { in execute_parse()
32 ctx->path = strdup(strings[0]); in execute_parse()
H A Dsave_nothing.c26 nothing_parse(char **strings) in nothing_parse() argument
31 strings = strings; /* gcc -Wextra */ in nothing_parse()
/freebsd-13.1/contrib/kyua/utils/text/
H A Doperations.ipp39 /// Concatenates a collection of strings into a single string.
41 /// \param strings The collection of strings to concatenate. If the collection
43 /// \param delimiter The delimiter to use to separate the strings.
45 /// \return The concatenated strings.
48 utils::text::join(const Collection& strings, const std::string& delimiter)
51 if (strings.size() > 1) {
52 for (typename Collection::const_iterator iter = strings.begin();
53 iter != --strings.end(); ++iter)
56 if (strings.size() > 0)
57 output << *(--strings.end());
/freebsd-13.1/crypto/heimdal/appl/gssmask/
H A Dcommon.c83 permutate_all(struct getarg_strings *strings, size_t *size) in permutate_all() argument
90 list = ecalloc(strings->num_strings, sizeof(*list)); in permutate_all()
91 for (i = 0; i < strings->num_strings; i++) in permutate_all()
92 list[i] = strings->strings[i]; in permutate_all()
94 permute(&all, size, list, 0, strings->num_strings); in permutate_all()
/freebsd-13.1/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.sh86 next_string(const char *strings, unsigned *offset)
88 *offset += (unsigned) strlen(strings + *offset) + 1;
94 const char *strings)
102 (*actual)[n].nte_name = strings + len;
106 next_string(strings, &len);
115 (*actual)[n].field = strings + source[n].field; \\
121 const char *strings,
H A DMKuserdefs.sh62 next_string(const char *strings, unsigned *offset)
64 *offset += (unsigned) strlen(strings + *offset) + 1;
70 const char *strings)
78 (*actual)[n].ute_name = strings + len;
84 next_string(strings, &len);
/freebsd-13.1/crypto/heimdal/lib/kadm5/
H A Dsample_passwd_check.c75 char *strings[2]; in check_cracklib() local
78 strings[0] = principal->name.name_string.val[0]; /* XXX */ in check_cracklib()
79 strings[1] = NULL; in check_cracklib()
82 msg = FascistCheck(s, DICTPATH, strings); in check_cracklib()
/freebsd-13.1/crypto/heimdal/lib/hx509/
H A Dhxtool-commands.in41 type = "strings"
54 type = "strings"
60 type = "strings"
66 type = "strings"
72 type = "strings"
127 type = "strings"
134 type = "strings"
140 type = "strings"
184 type = "strings"
190 type = "strings"
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/leds/backlight/
H A Dqcom-wled.yaml100 qcom,num-strings:
102 number of led strings attached.
105 qcom,enabled-strings:
107 Array of the WLED strings numbered from 0 to 3. Each
109 list of strings used by the device. Any combination of
110 led strings can be used.
179 qcom,num-strings:
197 qcom,num-strings:
251 qcom,num-strings = <2>;
252 qcom,enabled-strings = <0 1>;
/freebsd-13.1/lib/libifconfig/
H A Dlibifconfig_sfp.c514 struct ifconfig_sfp_info_strings *strings) in ifconfig_sfp_get_sfp_info_strings() argument
516 get_sfp_info_strings(sfp, strings); in ifconfig_sfp_get_sfp_info_strings()
517 if (strings->sfp_id == NULL) in ifconfig_sfp_get_sfp_info_strings()
519 if (strings->sfp_conn == NULL) in ifconfig_sfp_get_sfp_info_strings()
521 if (strings->sfp_rev == NULL) in ifconfig_sfp_get_sfp_info_strings()
522 strings->sfp_rev = "Unallocated"; in ifconfig_sfp_get_sfp_info_strings()
536 return (strings->sfp_eth_ext); in ifconfig_sfp_physical_spec()
538 return (strings->sfp_eth_1040g); in ifconfig_sfp_physical_spec()
542 return (strings->sfp_eth_ext); in ifconfig_sfp_physical_spec()
544 return (strings->sfp_eth_10g); in ifconfig_sfp_physical_spec()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBStringList.cpp85 void SBStringList::AppendList(const SBStringList &strings) { in AppendList() argument
87 (const lldb::SBStringList &), strings); in AppendList()
89 if (strings.IsValid()) { in AppendList()
92 m_opaque_up->AppendList(*(strings.m_opaque_up)); in AppendList()
96 void SBStringList::AppendList(const StringList &strings) { in AppendList() argument
99 m_opaque_up->AppendList(strings); in AppendList()
/freebsd-13.1/crypto/openssl/doc/man3/
H A DUI_STRING.pod67 This is only useful for B<UIT_PROMPT> and B<UIT_VERIFY> type strings.
73 This is only useful for B<UIT_VERIFY> type strings.
82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the
86 For B<UIT_BOOLEAN> type UI strings, this sets the first character of
98 only useful with normal C strings.
109 string for B<UIT_BOOLEAN> type UI strings, NULL for any other type.
112 B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, NULL for any other
116 content length for B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings,
120 string for B<UIT_VERIFY> type UI strings, NULL for any other type.
123 the UI string for B<UIT_PROMPT> and B<UIT_VERIFY> type strings,
[all …]
/freebsd-13.1/usr.bin/mail/
H A Dstrings.c51 struct strings stringdope[NSPACE];
66 struct strings *sp; in salloc()
102 struct strings *sp; in sreset()
124 struct strings *sp; in spreserve()
/freebsd-13.1/contrib/atf/atf-c++/
H A Dutils_test.cpp249 std::set< std::string > strings; in ATF_TEST_CASE_BODY() local
250 strings.insert("First"); in ATF_TEST_CASE_BODY()
251 strings.insert("Second"); in ATF_TEST_CASE_BODY()
253 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY()
254 ATF_REQUIRE( atf::utils::grep_collection("cond", strings)); in ATF_TEST_CASE_BODY()
255 ATF_REQUIRE(!atf::utils::grep_collection("Third", strings)); in ATF_TEST_CASE_BODY()
261 std::vector< std::string > strings; in ATF_TEST_CASE_BODY() local
262 strings.push_back("First"); in ATF_TEST_CASE_BODY()
263 strings.push_back("Second"); in ATF_TEST_CASE_BODY()
265 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY()
[all …]
/freebsd-13.1/contrib/libcbor/doc/source/
H A Dstreaming.rst4strings <api/type_2>`, :doc:`byte strings <api/type_3>`, :doc:`arrays <api/type_4>`, and :doc:`map…
/freebsd-13.1/contrib/libcbor/doc/source/api/
H A Dtype_2.rst1 Type 2 – Byte strings
4strings are just (ordered) series of bytes without further interpretation (unless there is a :doc:…
6 In case a byte string is indefinite, it is encoded as a series of definite byte strings. These are …
30 Streaming indefinite byte strings
H A Dtype_3.rst1 Type 3 – UTF-8 strings
4 CBOR strings work in much the same ways as :doc:`type_2`.
15 Streaming indefinite strings
22 …a part of the well-formedness notion of CBOR and therefore invalid UTF-8 strings will be rejected …

12345678910>>...34