Searched refs:sep (Results 151 - 175 of 243) sorted by relevance

12345678910

/freebsd-current/contrib/sendmail/src/
H A Dmci.c662 char *sep; local
665 sep = logit ? " " : "\n\t";
705 sep, mci->mci_errno, mci->mci_herrno,
706 mci->mci_exitstat, mci->mci_state, (int) mci->mci_pid, sep);
712 sep);
716 mci->mci_status, mci->mci_rstatus, sep);
H A Ddeliver.c75 #define SEP_MXHOSTS(endp, sep) \
78 sep = *endp; \
83 # define FIX_MXHOSTS(hp, endp, sep) \
93 SEP_MXHOSTS(endp, sep); \
96 # define FIX_MXHOSTS(hp, endp, sep) \
99 SEP_MXHOSTS(endp, sep); \
2024 char sep = ':'; local
2027 FIX_MXHOSTS(mxhosts[0], p, sep);
2047 *p = sep;
2565 char sep local
6979 char sep = ':'; local
7284 char sep = ':'; local
[all...]
/freebsd-current/libexec/nuageinit/
H A Dyaml.lua139 {"pipe", "^(|)(%d*[+%-]?)", sep = "\n"},
140 {"pipe", "^(>)(%d*[+%-]?)", sep = " "},
446 local result = self:parseTextBlock(pipe.sep)
451 Parser.parseTextBlock = function (self, sep)
458 result = result .. sep
/freebsd-current/sys/fs/nfsserver/
H A Dnfs_nfsdserv.c4486 struct nfsdsession *sep = NULL; local
4493 sep = (struct nfsdsession *)malloc(sizeof(struct nfsdsession),
4495 sep->sess_refcnt = 1;
4496 mtx_init(&sep->sess_cbsess.nfsess_mtx, "nfscbsession", NULL, MTX_DEF);
4501 sep->sess_crflags = fxdr_unsigned(uint32_t, *tl);
4503 sep->sess_crflags &= NFSV4CRSESS_CONNBACKCHAN;
4508 sep->sess_maxreq = fxdr_unsigned(uint32_t, *tl++);
4509 if (sep->sess_maxreq > sb_max_adj - NFS_MAXXDR) {
4510 sep->sess_maxreq = sb_max_adj - NFS_MAXXDR;
4515 sep
[all...]
/freebsd-current/tools/tools/ath/athregs/
H A Ddumpregs.c452 const char *sep = ""; local
463 fprintf(fd, "%s%-8s", sep, dr->name);
467 fprintf(fd, "%s%04x", sep, dr->addr);
469 sep = " ";
471 sep = "\n";
/freebsd-current/usr.bin/tftp/
H A Dmain.c372 const char *sep; local
391 sep = " ";
393 printf("%s%s", sep, p->m_name);
394 if (*sep == ' ')
395 sep = " | ";
/freebsd-current/bin/sh/
H A Deval.c751 char sep = 0; local
759 if (sep != 0)
768 sep = ' ';
772 if (sep != 0)
775 sep = ' ';
H A Dexpand.c932 char sep[2]; local
982 sep[0] = ifsval()[0];
984 sep[0] = ' ';
985 sep[1] = '\0';
990 if (sep[0])
991 strtodest(sep, flag, subtype, quoted, dst);
/freebsd-current/bin/chio/
H A Dchio.c913 char f, sep, *bp; local
919 for (sep = '<'; (f = *cp++) != 0; cp = np) {
925 "%c%.*s", sep, (int)(long)(np - cp), cp);
927 sep = ',';
929 if (sep != '<')
/freebsd-current/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new_helpers.c944 * @sep: Separating part (e.g., "Networks" or "PersistentGroups")
954 * sep = "Networks" would result in "/fi/w1/wpa_supplicant1/Interfaces/1"
957 char * wpas_dbus_new_decompose_object_path(const char *path, const char *sep, argument
989 sep_len = os_strlen(sep);
990 if (os_strncmp(pos, sep, sep_len) != 0 || pos[sep_len] != '/')
/freebsd-current/contrib/wireguard-tools/
H A Dconfig.c343 char *mask, *mutable = strdup(value), *sep, *saved_entry; local
354 sep = mutable;
355 while ((mask = strsep(&sep, ","))) {
/freebsd-current/sys/dev/mii/
H A Dmii_physubr.c386 const char *sep = ""; local
402 #define PRINT(s) printf("%s%s", sep, s); sep = ", "
/freebsd-current/usr.sbin/i2c/
H A Di2c.c218 const char *sep = ""; local
256 printf("%s%02x", sep, u);
257 sep = " ";
/freebsd-current/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
H A Dittnotify_static.cpp983 static const char *__itt_fsplit(const char *s, const char *sep, argument
988 if (!s || !sep || !out || !len)
993 for (j = 0; sep[j]; j++)
994 if (s[i] == sep[j]) {
1010 for (j = 0; sep[j]; j++)
1011 if (s[i] == sep[j]) {
1021 for (j = 0; sep[j]; j++)
1022 if (s[i] == sep[j]) {
/freebsd-current/contrib/lua/src/
H A Dltablib.c160 const char *sep = luaL_optlstring(L, 2, "", &lsep); local
166 luaL_addlstring(&b, sep, lsep);
/freebsd-current/crypto/openssh/
H A Dcipher.c117 cipher_alg_list(char sep, int auth_only) argument
129 ret[rlen++] = sep;
H A Dmisc.h82 void xextendf(char **s, const char *sep, const char *fmt, ...)
/freebsd-current/sys/kern/
H A Dkern_linker.c1941 const char * const *cpp, *sep; local
1953 sep = (path[pathlen - 1] != '/') ? "/" : "";
1955 reclen = pathlen + strlen(sep) + namelen + extlen + 1;
1958 snprintf(result, reclen, "%.*s%s%.*s%s", pathlen, path, sep,
1998 const char *best, *sep; local
2007 sep = (path[pathlen - 1] != '/') ? "/" : "";
2009 strlen(sep) + 1;
2011 snprintf(pathbuf, reclen, "%.*s%s%s", pathlen, path, sep,
/freebsd-current/contrib/bsddialog/utility/
H A Dutil_builders.c345 bool sep, sepbefore, sepafter, sepsecond, toquote, ismenu, ischecklist; local
352 sep = false;
383 sep = true;
408 if (sep || sepbefore)
410 sep = false;
412 sep = true;
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dcpu.h160 D(sep, 11)
/freebsd-current/contrib/libpcap/
H A Dsockutils.c1713 * \param sep: a string that keeps the separators used between the hosts (for example the
1731 int sock_check_hostlist(char *hostlist, const char *sep, struct sockaddr_storage *from, char *errbuf, int errbuflen) argument
1754 token = pcap_strtok_r(temphostlist, sep, &lasts);
1784 token = pcap_strtok_r(NULL, sep, &lasts);
1810 token = pcap_strtok_r(NULL, sep, &lasts);
/freebsd-current/tools/build/
H A Dmake.py323 debug("Running `env ", env_cmd_str, " ", make_cmd_str, "`", sep="")
/freebsd-current/contrib/bsddialog/lib/
H A Dbarbox.c119 int cols, unsigned int perc, int fd, const char *sep, const char *end)
137 CHECK_PTR(sep);
174 if (strcmp(inputbuf, sep) == 0)
189 if (strcmp(inputbuf, sep) == 0)
118 bsddialog_gauge(struct bsddialog_conf *conf, const char *text, int rows, int cols, unsigned int perc, int fd, const char *sep, const char *end) argument
/freebsd-current/contrib/lib9p/
H A Dutils.c265 const char *sep; local
274 sep = bracketbuf;
277 sbuf_printf(sb, "%s%s", sep, db->db_name);
278 sep = ",";
293 sbuf_printf(sb, "%s?0x%" PRIx64, sep, value);
/freebsd-current/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c1187 char sep; local
1193 sep = *str++;
1194 if (sep != *str++)
1196 if (sep != *str++)
1201 if (end[0] != sep || end[1] != '\0')

Completed in 692 milliseconds

12345678910