Searched refs:suffix (Results 1 - 5 of 5) sorted by relevance

/xnu-2782.1.97/SETUP/
H A Dnewvers29 if [ -s vers.suffix -o ! -f vers.suffix ]; then
30 rm -f vers.suffix
31 echo ".${variant}.${CONFIG}" > vers.suffix
/xnu-2782.1.97/bsd/dev/dtrace/
H A Dprofile_prvd.c267 const char *name, *suffix = NULL; local
344 * We need to start before any time suffix.
349 suffix = &name[j];
352 ASSERT(suffix != NULL);
369 * Look-up the suffix to determine the multiplier.
373 if (strncasecmp(suffixes[i].name, suffix, strlen(suffixes[i].name) + 1) == 0) {
379 if (suffixes[i].name == NULL && *suffix != '\0')
/xnu-2782.1.97/libkern/kxld/
H A Dkxld_sym.c61 const char *suffix, char *buf, u_long len);
807 extract_inner_string(const char *str, const char *prefix, const char *suffix, argument
817 suflen = (suffix) ? strlen(suffix) : 0;
/xnu-2782.1.97/bsd/net/
H A Dif_bridge.c972 printf_mbuf_pkthdr(mbuf_t m, const char *prefix, const char *suffix) argument
981 suffix ? suffix : "");
983 printf("%s<NULL>%s\n", prefix, suffix);
987 printf_mbuf(mbuf_t m, const char *prefix, const char *suffix) argument
998 !suffix || (mbuf_flags(m) & MBUF_PKTHDR) ? "" : suffix);
1000 printf_mbuf_pkthdr(m, " ", suffix);
1002 printf("%s<NULL>%s\n", prefix, suffix);
H A Dnecp.c3667 necp_check_suffix(struct substring parent, struct substring suffix, bool require_dot_before_suffix) argument
3669 if (parent.length <= suffix.length) {
3673 size_t length_difference = (parent.length - suffix.length);
3681 return (memcmp(parent.string + length_difference, suffix.string, suffix.length) == 0);

Completed in 62 milliseconds