/src/sbin/chkconfig/ |
chkconfig.sh | 67 exists() function 69 # Returns true if an executable named $1 exists 212 if exists ${rcfile} && is_valid ${rcfile}; then 222 if exists ${rcfile}; then 227 if exists ${rcfile}; then
|
/src/usr.bin/patch/ |
pch.h | 40 bool exists; member in struct:file_name
|
pch.c | 191 bool exists = false; local in function:there_is_another_patch 232 filearg[0] = fetchname(buf, &exists, 0); 234 if (!exists) { 241 filearg[0] = fetchname(bestguess, &exists, 0); 305 &names[OLD_FILE].exists, strippath); 308 &names[NEW_FILE].exists, strippath); 312 &names[OLD_FILE].exists, strippath); 315 &names[INDEX_FILE].exists, strippath); 1491 * the file exists relative to CWD after -p stripping. 1494 if (names[i].path != NULL && names[i].exists) { [all...] |
/src/bin/ln/ |
ln.c | 234 int ch, exists, first; local in function:linkit 298 * If the file exists, first check it is not the same directory entry. 300 exists = !lstat(target, &sb); 301 if (exists) { 312 if (fflag && exists) { 322 } else if (iflag && exists) {
|
/src/usr.bin/compress/ |
compress.c | 206 int exists, isreg, oreg; local in function:compress 210 exists = !stat(out, &sb); 211 if (!force && exists && S_ISREG(sb.st_mode) && !permission(out)) 213 oreg = !exists || S_ISREG(sb.st_mode); 304 int exists, isreg, oreg; local in function:decompress 308 exists = !stat(out, &sb); 309 if (!force && exists && S_ISREG(sb.st_mode) && !permission(out)) 311 oreg = !exists || S_ISREG(sb.st_mode);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_addrhashmap.h | 41 // if !h.exists() then the element never existed 79 bool exists() const; 157 bool AddrHashMap<T, kSize>::Handle::exists() const { function in class:__sanitizer::AddrHashMap::Handle
|
/src/sys/arch/powerpc/powerpc/ |
rtas.c | 45 int exists; member in struct:__anon2e0518f10108 157 rtas_function_token[index].exists = 1; 219 if (!rtas_function_token[token].exists) 256 return rtas_function_token[token].exists; 268 if (!rtas_function_token[RTAS_FUNC_GET_TIME_OF_DAY].exists) 290 if (!rtas_function_token[RTAS_FUNC_SET_TIME_OF_DAY].exists)
|
/src/usr.bin/rdist/ |
server.c | 92 * Qname - Query if file exists. Return mtime & size if it does. 619 * Check to see if the file exists on the remote machine. 701 * Query. Check to see if file exists. Return one of the following: 703 * Ysize mtime\n - exists and its a regular file (size & mtime of file) 704 * Y\n - exists and its a directory or symbolic link 998 int opts, exists = 0; local in function:hardlink 1025 exists = 1; 1032 if (exists && (unlink(target) < 0)) { 1046 * Check to see if parent directory exists and create one if not. 1172 * N\n -- file exists - DON'T remove [all...] |
/src/bin/rcp/ |
rcp.c | 493 int exists, first, ofd; local in function:sink 622 exists = stat(np, &stb) == 0; 625 if (exists) { 704 if (exists || omode != mode) 708 if (!exists && omode != mode)
|
/src/sys/arch/x68k/x68k/ |
machdep.c | 1098 bool exists = false; local in function:mem_exists 1169 exists = true; 1179 return exists;
|
/src/usr.sbin/user/ |
user.c | 281 /* directory exists (and is a directory!) */ 381 warnx("Can't create group `%s': already exists", group); 987 * Check if /etc/login.conf exists. login_getclass() will 1258 "already exists", login_name, home); 2457 int exists; local in function:userinfo 2461 exists = 0; 2466 exists = 1; 2479 if (exists) { 2522 int exists; local in function:groupinfo 2525 exists = 0 [all...] |
/src/sys/arch/shark/ofw/ |
ofw.c | 1751 int exists; local in function:ofw_gettranslation 1756 exists = 0; /* gets set to true if translation exists */ 1758 &exists) != 0) { 1766 printf("%d %x\n", exists, (uint32_t)pa); 1768 return(exists ? pa : -1);
|
/src/sys/dev/acpi/ |
acpi_display.c | 164 uint8_t exists:1; member in struct:acpidisp_od_status_t::__anon3217d4180308 2099 * Returns true if and only if (a) the object handle.path exists and
|
/src/usr.bin/make/ |
var.c | 91 * See if a variable exists. 1226 * In the scope, expand the variable name once. If the variable exists in the 1270 * See if the given variable exists, in the given scope or in other 1281 bool exists; local in function:Var_ExistsExpand 1284 exists = Var_Exists(scope, varname.str); 1286 return exists; 1298 * The value if the variable exists, NULL if it doesn't. 1320 /* Set or clear the read-only attribute of the variable if it exists. */
|