Home
last modified time | relevance | path

Searched refs:delim (Results 176 - 200 of 305) sorted by relevance

12345678910>>...13

/third_party/node/src/
H A Dutil.cc182 const std::string_view delim) { in SplitString()
189 std::find_first_of(first, last, std::cbegin(delim), std::cend(delim)); in SplitString()
181 SplitString(const std::string_view in, const std::string_view delim) SplitString() argument
/kernel/linux/linux-5.10/fs/cifs/
H A Dconnect.c1253 char *dst, *delim; in extract_hostname() local
1266 delim = strchr(src, '\\'); in extract_hostname()
1267 if (!delim) in extract_hostname()
1270 len = delim - src; in extract_hostname()
1403 char delim; in cifs_parse_mount_options() local
1411 delim = separator[0]; in cifs_parse_mount_options()
1982 if (!(tmp_end < end && tmp_end[1] == delim)) { in cifs_parse_mount_options()
2001 if (tmp_end < end && tmp_end[1] == delim) { in cifs_parse_mount_options()
2002 tmp_end[0] = delim; in cifs_parse_mount_options()
2007 while ((tmp_end = strchr(tmp_end, delim)) in cifs_parse_mount_options()
2889 const char *delim, *payload; cifs_set_cifscreds() local
[all...]
/kernel/linux/linux-5.10/drivers/net/bonding/
H A Dbond_options.c1330 char *delim; in bond_option_queue_id_set() local
1334 /* delim will point to queue id if successful */ in bond_option_queue_id_set()
1335 delim = strchr(newval->string, ':'); in bond_option_queue_id_set()
1336 if (!delim) in bond_option_queue_id_set()
1342 *delim = '\0'; in bond_option_queue_id_set()
1343 if (sscanf(++delim, "%hd\n", &qid) != 1) in bond_option_queue_id_set()
/kernel/linux/linux-6.6/drivers/net/bonding/
H A Dbond_options.c1533 char *delim; in bond_option_queue_id_set() local
1537 /* delim will point to queue id if successful */ in bond_option_queue_id_set()
1538 delim = strchr(newval->string, ':'); in bond_option_queue_id_set()
1539 if (!delim) in bond_option_queue_id_set()
1545 *delim = '\0'; in bond_option_queue_id_set()
1546 if (sscanf(++delim, "%hd\n", &qid) != 1) in bond_option_queue_id_set()
/kernel/linux/linux-5.10/net/ceph/
H A Dmessenger.c1838 char delim, const char **ipend) in ceph_pton()
1842 if (in4_pton(str, len, (u8 *)&((struct sockaddr_in *)&addr->in_addr)->sin_addr.s_addr, delim, ipend)) { in ceph_pton()
1847 if (in6_pton(str, len, (u8 *)&((struct sockaddr_in6 *)&addr->in_addr)->sin6_addr.s6_addr, delim, ipend)) { in ceph_pton()
1860 struct ceph_entity_addr *addr, char delim, const char **ipend) in ceph_dns_resolve_name()
1870 delim_p = memchr(name, delim, namelen); in ceph_dns_resolve_name()
1905 struct ceph_entity_addr *addr, char delim, const char **ipend) in ceph_dns_resolve_name()
1916 struct ceph_entity_addr *addr, char delim, const char **ipend) in ceph_parse_server_name()
1920 ret = ceph_pton(name, namelen, addr, delim, ipend); in ceph_parse_server_name()
1922 ret = ceph_dns_resolve_name(name, namelen, addr, delim, ipend); in ceph_parse_server_name()
1942 char delim in ceph_parse_ips() local
1837 ceph_pton(const char *str, size_t len, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_pton() argument
1859 ceph_dns_resolve_name(const char *name, size_t namelen, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_dns_resolve_name() argument
1904 ceph_dns_resolve_name(const char *name, size_t namelen, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_dns_resolve_name() argument
1915 ceph_parse_server_name(const char *name, size_t namelen, struct ceph_entity_addr *addr, char delim, const char **ipend) ceph_parse_server_name() argument
[all...]
/foundation/communication/wifi/wifi/utils/inc/
H A Dwifi_common_util.h175 * @param delim - Split delimiter
178 std::vector<std::string> StrSplit(const std::string& str, const std::string& delim);
/kernel/linux/linux-5.10/include/linux/netfilter/
H A Dnf_conntrack_sip.h186 bool delim);
/kernel/linux/linux-6.6/include/linux/netfilter/
H A Dnf_conntrack_sip.h186 bool delim);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dwpa_common.c2946 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim) in wpa_write_ciphers() argument
2953 pos == start ? "" : delim); in wpa_write_ciphers()
2960 pos == start ? "" : delim); in wpa_write_ciphers()
2967 pos == start ? "" : delim); in wpa_write_ciphers()
2974 pos == start ? "" : delim); in wpa_write_ciphers()
2981 pos == start ? "" : delim); in wpa_write_ciphers()
2988 pos == start ? "" : delim); in wpa_write_ciphers()
2995 pos == start ? "" : delim); in wpa_write_ciphers()
3002 pos == start ? "" : delim); in wpa_write_ciphers()
3009 pos == start ? "" : delim); in wpa_write_ciphers()
[all...]
/foundation/communication/netmanager_base/frameworks/native/netmanagernative/
H A Dnetfirewall_parcel.cpp81 std::vector<std::string> NetFirewallUtils::split(const std::string &text, char delim) in split() argument
86 while (std::getline(ss, item, delim)) { in split()
/kernel/linux/linux-5.10/arch/s390/kernel/
H A Dtopology.c397 char delim; in dispatching_store() local
399 if (sscanf(buf, "%d %c", &val, &delim) != 1) in dispatching_store()
/kernel/linux/linux-6.6/arch/s390/kernel/
H A Dtopology.c403 char delim; in dispatching_store() local
405 if (sscanf(buf, "%d %c", &val, &delim) != 1) in dispatching_store()
/third_party/node/src/crypto/
H A Dcrypto_bio.cc316 size_t NodeBIO::IndexOf(char delim, size_t limit) { in IndexOf() argument
331 while (off < avail && *tmp != delim) { in IndexOf()
340 // Found `delim` in IndexOf()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dcommon.h565 const char * cstr_token(const char *str, const char *delim, const char **last);
566 char * str_token(char *str, const char *delim, char **context);
/third_party/vulkan-loader/loader/
H A Dvk_loader_platform.h415 static inline void *thread_safe_strtok(char *str, const char *delim, char **saveptr) { return strtok_r(str, delim, saveptr); } in thread_safe_strtok() argument
/third_party/nghttp2/src/
H A Dutil.h614 // delimited by |delim|. The any white spaces around substring are
617 char delim = ',');
620 // delimited by |delim|. The any white spaces around substring are
622 std::vector<StringRef> split_str(const StringRef &s, char delim);
627 std::vector<StringRef> split_str(const StringRef &s, char delim, size_t n);
/third_party/python/Lib/
H A Dstring.py74 delim = _re.escape(cls.delimiter)
78 {delim}(?:
79 (?P<escaped>{delim}) | # Escape sequence of two delimiters
H A Dconfigparser.py581 \s*(?P<vi>{delim})\s* # any number of space/tab,
590 (?P<vi>{delim})\s* # optionally followed by
601 OPTCRE = re.compile(_OPT_TMPL.format(delim="=|:"), re.VERBOSE)
604 OPTCRE_NV = re.compile(_OPT_NV_TMPL.format(delim="=|:"), re.VERBOSE)
630 self._optcre = re.compile(self._OPT_NV_TMPL.format(delim=d),
633 self._optcre = re.compile(self._OPT_TMPL.format(delim=d),
/third_party/skia/resources/sksl/es2_conformance/
H A Dimport_conformance_tests.py36 pipeList = pp.delimited_list(pp.SkipTo(pp.Literal("|") | pp.Literal("]")), delim="|")
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Decs_serializer.cpp136 if (const auto delim = version.find('.'); delim != string::npos) { in CheckCompatibility()
137 std::from_chars(version.data(), version.data() + delim, versionMajor); in CheckCompatibility()
138 const size_t minorStart = delim + 1; in CheckCompatibility()
/kernel/linux/linux-6.6/drivers/bluetooth/
H A Dhci_h5.c520 const u8 delim = SLIP_DELIMITER, esc = SLIP_ESC; in h5_unslip_one_byte() local
531 byte = &delim; in h5_unslip_one_byte()
646 const char delim = SLIP_DELIMITER; in h5_slip_delim() local
648 skb_put_data(skb, &delim, 1); in h5_slip_delim()
/third_party/libinput/test/
H A Dtest-utils.c1075 const char *delim; in START_TEST() member
1102 char **strv = strv_from_string(t->string, t->delim, &nelem); in START_TEST()
1126 const char *delim; in START_TEST() member
1153 t->delim, in START_TEST()
/third_party/skia/third_party/externals/expat/expat/xmlwf/
H A Dxmlwf.c1167 const XML_Char *delim = T("/"); in tmain() local
1171 const XML_Char *lastDelim = tcsrchr(file, delim[0]); in tmain()
1180 delim = winDelim; in tmain()
1192 tcscat(outName, delim); in tmain()
/kernel/linux/linux-5.10/drivers/s390/cio/
H A Dchp.c299 char delim; in chp_configure_write() local
301 if (sscanf(buf, "%d %c", &val, &delim) != 1) in chp_configure_write()
/kernel/linux/linux-5.10/include/linux/
H A Dtrace_events.h19 const char *trace_print_flags_seq(struct trace_seq *p, const char *delim,
27 const char *trace_print_flags_seq_u64(struct trace_seq *p, const char *delim,

Completed in 36 milliseconds

12345678910>>...13