HomeSort by: relevance | last modified time | path
    Searched defs:follow (Results 1 - 24 of 24) sorted by relevancy

  /src/games/battlestar/
command2.c 354 follow(void) function
378 puts("There is no one to follow.");
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
std-dir.cc 261 const bool follow local
268 if (std::exchange(_M_pending, true) && top.should_recurse(follow, ec))
dir.cc 291 const bool follow variable
298 if (std::exchange(_M_pending, true) && top.should_recurse(follow, ec))
300 _Dir dir = top.open_subdir(skip_permission_denied, !follow, ec);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolutionDivision.cpp 38 bool follow(const SCEV *S) { function in struct:__anon4101::FindSCEVSize
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
fs_dir.cc 379 const bool follow local
386 if (std::exchange(_M_dirs->pending, true) && top.should_recurse(follow, ec))
388 _Dir dir = top.open_subdir(skip_permission_denied, !follow, ec);
472 // We never want to follow directory symlinks when removing files.
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
dir.cc 291 const bool follow variable
298 if (std::exchange(_M_pending, true) && top.should_recurse(follow, ec))
300 _Dir dir = top.open_subdir(skip_permission_denied, !follow, ec);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
fs_dir.cc 379 const bool follow local
386 if (std::exchange(_M_dirs->pending, true) && top.should_recurse(follow, ec))
388 _Dir dir = top.open_subdir(skip_permission_denied, !follow, ec);
472 // We never want to follow directory symlinks when removing files.
  /src/sys/compat/linux32/common/
linux32_unistd.c 417 int follow; local
419 follow = SCARG(uap, flags) & LINUX_AT_SYMLINK_FOLLOW;
421 return do_sys_linkat(l, fd1, name1, fd2, name2, follow, retval);
  /src/usr.sbin/trpt/
trpt.c 137 static int aflag, follow, sflag, tflag; variable
168 ++follow;
341 if (follow) {
  /src/sys/compat/linux/common/
linux_file.c 563 return linux_stat1(uap, retval, FOLLOW);
600 int follow; local
602 follow = SCARG(uap, flags) & LINUX_AT_SYMLINK_FOLLOW;
604 return do_sys_linkat(l, fd1, name1, fd2, name2, follow, retval);
626 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | TRYEMULROOT, pb);
linux_misc.c 1617 int follow, error; local
1619 follow = (flags & LINUX_AT_SYMLINK_NOFOLLOW) ? NOFOLLOW : FOLLOW;
1633 return do_sys_utimensat(l, fd, NULL, path, follow, tsp, UIO_SYSSPACE);
  /src/sys/compat/netbsd32/
netbsd32_fs.c 389 return do_sys_utimes(l, NULL, SCARG_P32(uap, path), FOLLOW,
572 error = do_sys_stat(path, FOLLOW, &sb);
1310 int follow; local
1313 follow = (SCARG(uap, flag) & AT_SYMLINK_NOFOLLOW) ? NOFOLLOW : FOLLOW;
1316 follow, &sb);
1334 int follow; local
1341 follow = (SCARG(uap, flag) & AT_SYMLINK_NOFOLLOW) ? NOFOLLOW : FOLLOW;
1344 SCARG_P32(uap, path), follow, tsp, UIO_SYSSPACE)
    [all...]
  /src/usr.sbin/makefs/
makefs.h 179 int follow; /* follow symlinks */ member in struct:makefs_fsinfo
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 613 /// // return true to follow this node.
614 /// bool follow(const SCEV *S);
624 if (Visited.insert(S).second && Visitor.follow(S))
686 bool follow(const SCEV *S) { function in struct:llvm::FindClosure
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 1422 void follow(const SUnit *SU) { function in class:__anon4282::SchedDAGReverseDFS
1465 DFS.follow(&SU);
1482 DFS.follow(PredDep.getSUnit());
  /src/external/gpl3/binutils/dist/gprofng/libcollector/
linetrace.c 171 /* check the follow spec */
189 line_mode = LM_TRACK_LINEAGE; /* even if we don't follow, we report the interposition */
196 * Check args to determine which line events to follow.
349 int follow = (user_follow_mode != FOLLOW_NONE); local
350 TprintfT (DBG_LT0, "check_follow_fork()=%d\n", follow);
351 return follow;
357 int follow = (user_follow_mode != FOLLOW_NONE); local
358 if (follow)
361 follow = path_collectable (execfile);
363 TprintfT (DBG_LT0, "check_follow_exec(%s)=%d\n", execfile, follow);
370 int follow = (user_follow_mode != FOLLOW_NONE); local
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/libcollector/
linetrace.c 171 /* check the follow spec */
189 line_mode = LM_TRACK_LINEAGE; /* even if we don't follow, we report the interposition */
196 * Check args to determine which line events to follow.
349 int follow = (user_follow_mode != FOLLOW_NONE); local
350 TprintfT (DBG_LT0, "check_follow_fork()=%d\n", follow);
351 return follow;
357 int follow = (user_follow_mode != FOLLOW_NONE); local
358 if (follow)
361 follow = path_collectable (execfile);
363 TprintfT (DBG_LT0, "check_follow_exec(%s)=%d\n", execfile, follow);
370 int follow = (user_follow_mode != FOLLOW_NONE); local
    [all...]
  /src/external/historical/nawk/dist/
b.c 243 cfoll(f, p1); /* set up follow sets */
397 case 'x': /* 2 hex digits follow */
487 void cfoll(fa *f, Node *v) /* enter follow set of each leaf of vertex v into lfollow[leaf] */
503 follow(v); /* computes setvec and setcnt */
571 void follow(Node *v) /* collects leaves that can follow v into setvec */ function
582 follow(p);
587 follow(p);
593 follow(p);
597 follow(p)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ScalarEvolutionExpander.cpp 744 // Sort by loop. Use a stable sort so that constants follow non-constants and
814 // Sort by loop. Use a stable sort so that constants follow non-constants.
2677 bool follow(const SCEV *S) { function in struct:__anon5549::SCEVFindUnsafe
  /src/external/gpl2/groff/dist/src/preproc/pic/
object.cpp 863 if (!with->follow(here, &offset))
1912 take a place and follow the path through the place to place within the
1967 int path::follow(const place &pl, place *result) const function in class:path
1991 if (!ypath->follow(pl, &tem))
  /src/sys/coda/
coda.h 812 int follow; member in struct:PioctlData
  /src/sys/kern/
vfs_syscalls.c 1730 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | LOCKSHARED | TRYEMULROOT, pb);
2116 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | TRYEMULROOT, pb);
2612 const char *link, int follow, register_t *retval)
2620 if (follow & AT_SYMLINK_FOLLOW)
2697 int follow; local
2699 follow = SCARG(uap, flags) & AT_SYMLINK_FOLLOW;
2701 return do_sys_linkat(l, fd1, name1, fd2, name2, follow, retval);
3179 nd_flag = FOLLOW | LOCKLEAF | LOCKSHARED | TRYEMULROOT;
3181 nd_flag &= ~FOLLOW;
3294 error = do_sys_statat(l, AT_FDCWD, SCARG(uap, path), FOLLOW, &sb)
4028 int follow; local
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
Experiment.cc 721 int follow = toInt (attrs, NTXT ("follow")); local
723 exp->process_desc_start_cmd (NULL, ts, variant, lineage, follow, msg);
729 int follow = toInt (attrs, NTXT ("follow")); local
731 exp->process_desc_started_cmd (NULL, ts, variant, lineage, follow, msg);
735 // if successful, acts like experiment termination - no "exit" entry will follow
739 int follow = toInt (attrs, NTXT ("follow")); local
741 exp->process_desc_start_cmd (NULL, ts, variant, lineage, follow, msg)
749 int follow = toInt (attrs, NTXT ("follow")); local
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Experiment.cc 721 int follow = toInt (attrs, NTXT ("follow")); local
723 exp->process_desc_start_cmd (NULL, ts, variant, lineage, follow, msg);
729 int follow = toInt (attrs, NTXT ("follow")); local
731 exp->process_desc_started_cmd (NULL, ts, variant, lineage, follow, msg);
735 // if successful, acts like experiment termination - no "exit" entry will follow
739 int follow = toInt (attrs, NTXT ("follow")); local
741 exp->process_desc_start_cmd (NULL, ts, variant, lineage, follow, msg)
749 int follow = toInt (attrs, NTXT ("follow")); local
    [all...]

Completed in 67 milliseconds