Lines Matching defs:start
116 int word_start; /* The index in line[] of the start of the username */
262 * Get a pointer to the start of the incomplete filename.
329 * might be the start of the last component, and mark the character
330 * that follows it as the start of the name that is to be completed.
338 * We have reached either the end of the filename or the start of
382 * If we are at the start of the filename and the first character of the
513 * word_start int The index within line[] of the start of the
540 * Iterate through the list of users, recording those which start
591 * word_start int The index within line[] of the start of the
613 int start; /* The index of the start of the last filename */
626 * Locate the start of the final component of the pathname.
628 for(start=pathlen - 1; start >= 0 &&
629 strncmp(pathname + start, FS_DIR_SEP, FS_DIR_SEP_LEN) != 0; start--)
634 if(start==0 ||
635 (start < 0 && strncmp(pathname, FS_ROOT_DIR, FS_ROOT_DIR_LEN) == 0)) {
637 start += FS_ROOT_DIR_LEN;
642 } else if(start > 0) {
648 pathname[start] = '\0';
652 * We reached the start of the pathname before finding a directory
656 start = 0;
668 * to the start of the filename.
671 memcpy(pathname + start, FS_DIR_SEP, FS_DIR_SEP_LEN);
672 start += FS_DIR_SEP_LEN;
677 prefix = pathname + start;
690 * When listing all files in a directory, don't list files that start