HomeSort by: relevance | last modified time | path
    Searched refs:lastslash (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/kern/
kern_core.c 134 char *name, *lastslash = NULL /* XXXgcc */; local
189 lastslash = strrchr(name, '/');
190 if (!lastslash) {
209 if (lastslash) {
212 if (lastslash - name >= MAXPATHLEN - 2) {
217 c[0] = lastslash[1];
218 c[1] = lastslash[2];
219 lastslash[1] = '.';
220 lastslash[2] = '\0';
230 lastslash[1] = c[0]
    [all...]
  /src/common/dist/zlib/contrib/minizip/
minizip.c 425 const char *lastslash = 0; local
430 lastslash = tmpptr;
433 if( lastslash != NULL )
435 savefilenameinzip = lastslash+1; // base filename follows last slash.
  /src/sys/dev/ofw/
ofw_subr.c 521 const char *lastslash; local
540 lastslash = strrchr(pbuf, '/');
541 strlcpy(buf, (lastslash == NULL) ? pbuf : (lastslash + 1),
  /src/lib/libc/time/
zic.c 1563 char const *lastslash = strrchr(src, '/'); local
1564 ptrdiff_t dirlen = lastslash ? lastslash + 1 - src : 0;

Completed in 18 milliseconds