Home
last modified time | relevance | path

Searched refs:resolved (Results 1 – 25 of 527) sorted by relevance

12345678910>>...22

/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dsftp-realpath.c48 char *sftp_realpath(const char *path, char *resolved);
58 sftp_realpath(const char *path, char *resolved) in sftp_realpath() argument
74 if (resolved == NULL) { in sftp_realpath()
75 resolved = malloc(PATH_MAX); in sftp_realpath()
76 if (resolved == NULL) in sftp_realpath()
84 resolved[0] = '/'; in sftp_realpath()
85 resolved[1] = '\0'; in sftp_realpath()
87 return (resolved); in sftp_realpath()
91 if (getcwd(resolved, PATH_MAX) == NULL) { in sftp_realpath()
93 free(resolved); in sftp_realpath()
[all …]
/netbsd-src/lib/libc/gen/
H A Dgetcwd.c71 realpath(const char * __restrict path, char * __restrict resolved) in __weak_alias()
86 if (resolved == NULL) { in __weak_alias()
87 fres = resolved = malloc(MAXPATHLEN); in __weak_alias()
88 if (resolved == NULL) in __weak_alias()
103 p = resolved; in __weak_alias()
114 if (resolved && getcwd(resolved, MAXPATHLEN) == NULL) { in __weak_alias()
119 len = strlen(resolved); in __weak_alias()
130 if (p == resolved) in __weak_alias()
133 return resolved; in __weak_alias()
150 if (p != resolved) in __weak_alias()
[all …]
/netbsd-src/usr.sbin/sysinst/
H A Daout2elf.c316 target_realpath(const char *path, char *resolved) in target_realpath() argument
328 (void)strlcpy(resolved, ".", MAXPATHLEN); in target_realpath()
341 snprintf(resolved, MAXPATHLEN, "%s/%s", target_prefix(), path); in target_realpath()
343 if (strlcpy(resolved, path, MAXPATHLEN) >= MAXPATHLEN) { in target_realpath()
348 q = strrchr(resolved, '/'); in target_realpath()
351 if (q == resolved) in target_realpath()
356 } while (q > resolved && *q == '/'); in target_realpath()
358 q = resolved; in target_realpath()
363 p = resolved; in target_realpath()
377 snprintf(resolved, MAXPATHLEN, "%s%s", in target_realpath()
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dcanonicalize.c100 __realpath (const char *name, char *resolved) in __realpath() argument
135 if (resolved == NULL) in __realpath()
142 rpath = resolved; in __realpath()
198 if (resolved) in __realpath()
305 return resolved ? memcpy (resolved, rpath, dest - rpath + 1) : rpath; in __realpath()
312 if (resolved) in __realpath()
313 strcpy (resolved, rpath); in __realpath()
327 __old_realpath (const char *name, char *resolved) in __old_realpath() argument
329 if (resolved == NULL) in __old_realpath()
335 return __realpath (name, resolved); in __old_realpath()
/netbsd-src/external/gpl2/gettext/dist/gnulib-local/lib/
H A Dcanonicalize.c100 __realpath (const char *name, char *resolved) in __realpath() argument
135 if (resolved == NULL) in __realpath()
142 rpath = resolved; in __realpath()
198 if (resolved) in __realpath()
305 return resolved ? memcpy (resolved, rpath, dest - rpath + 1) : rpath; in __realpath()
312 if (resolved) in __realpath()
313 strcpy (resolved, rpath); in __realpath()
327 __old_realpath (const char *name, char *resolved) in __old_realpath() argument
329 if (resolved == NULL) in __old_realpath()
335 return __realpath (name, resolved); in __old_realpath()
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
H A Dcanonicalize.c100 __realpath (const char *name, char *resolved) in __realpath() argument
135 if (resolved == NULL) in __realpath()
142 rpath = resolved; in __realpath()
198 if (resolved) in __realpath()
305 return resolved ? memcpy (resolved, rpath, dest - rpath + 1) : rpath; in __realpath()
312 if (resolved) in __realpath()
313 strcpy (resolved, rpath); in __realpath()
327 __old_realpath (const char *name, char *resolved) in __old_realpath() argument
329 if (resolved == NULL) in __old_realpath()
335 return __realpath (name, resolved); in __old_realpath()
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dcanonicalize-lgpl.c202 realpath_stk (const char *name, char *resolved, in realpath_stk() argument
407 if (resolved != NULL && dest - rname <= get_path_max ()) in realpath_stk()
408 rname = strcpy (resolved, rname); in realpath_stk()
414 if (failed || rname == resolved) in realpath_stk()
417 return failed ? NULL : resolved; in realpath_stk()
435 __realpath (const char *name, char *resolved) in __realpath() argument
442 return realpath_stk (name, resolved, &rname_buffer); in __realpath()
453 __old_realpath (const char *name, char *resolved) in __old_realpath() argument
455 if (resolved == NULL) in __old_realpath()
461 return __realpath (name, resolved); in __old_realpath()
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dcanonicalize.c77 char *resolved, *extra_buf = NULL; in canonicalize_file_name() local
112 resolved = xmalloc (resolved_size); in canonicalize_file_name()
113 resolved_len = resolvepath (name, resolved, resolved_size); in canonicalize_file_name()
116 free (resolved); in canonicalize_file_name()
122 free (resolved); in canonicalize_file_name()
128 resolved[resolved_len] = '\0'; in canonicalize_file_name()
130 return resolved; in canonicalize_file_name()
/netbsd-src/external/gpl3/binutils/dist/opcodes/
H A Dia64-gen.c1031 int resolved = 0; in in_iclass() local
1069 resolved = ((strncmp (ic->name, idesc->name, len) == 0) in in_iclass()
1074 if (resolved && in in_iclass()
1078 resolved = strcmp (ic->name, idesc->name) == 0; in in_iclass()
1082 if (resolved && field) in in_iclass()
1090 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0; in in_iclass()
1096 resolved = strstr (field, "fault") != NULL; in in_iclass()
1098 resolved = strstr (field, "fault") == NULL; in in_iclass()
1104 resolved = strstr (field, "or.andcm") != NULL; in in_iclass()
1106 resolved = strstr (field, "and.orcm") != NULL; in in_iclass()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/
H A Dia64-gen.c1038 int resolved = 0; in in_iclass() local
1076 resolved = ((strncmp (ic->name, idesc->name, len) == 0) in in_iclass()
1081 if (resolved && in in_iclass()
1085 resolved = strcmp (ic->name, idesc->name) == 0; in in_iclass()
1089 if (resolved && field) in in_iclass()
1097 resolved = strcmp (sf + 1, strstr (field, "==") + 2) == 0; in in_iclass()
1103 resolved = strstr (field, "fault") != NULL; in in_iclass()
1105 resolved = strstr (field, "fault") == NULL; in in_iclass()
1111 resolved = strstr (field, "or.andcm") != NULL; in in_iclass()
1113 resolved = strstr (field, "and.orcm") != NULL; in in_iclass()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000-c.cc935 enum resolution { unresolved, resolved, resolved_bad }; enumerator
964 *res = resolved; in resolve_vec_mul()
970 *res = resolved; in resolve_vec_mul()
977 *res = resolved; in resolve_vec_mul()
1047 *res = resolved; in resolve_vec_cmpne()
1114 *res = resolved; in resolve_vec_adde_sube()
1205 *res = resolved; in resolve_vec_addec_subec()
1238 *res = resolved; in resolve_vec_splats()
1245 *res = resolved; in resolve_vec_splats()
1314 *res = resolved; in resolve_vec_splats()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Dsymbols.c45 unsigned int resolved : 1; member
443 struct symbol_flags flags = { .local_symbol = 1, .resolved = 0 }; in local_symbol_make()
1284 int resolved; in resolve_symbol_value() local
1293 if (locsym->flags.resolved) in resolve_symbol_value()
1306 locsym->flags.resolved = 1; in resolve_symbol_value()
1312 if (symp->flags.resolved) in resolve_symbol_value()
1325 if (!symp->flags.resolved) in resolve_symbol_value()
1335 resolved = 0; in resolve_symbol_value()
1344 resolved = 1; in resolve_symbol_value()
1370 resolved = 0; in resolve_symbol_value()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Dsymbols.c44 unsigned int resolved : 1; member
374 struct symbol_flags flags = { .local_symbol = 1, .resolved = 0 }; in local_symbol_make()
1214 int resolved; in resolve_symbol_value() local
1223 if (locsym->flags.resolved) in resolve_symbol_value()
1236 locsym->flags.resolved = 1; in resolve_symbol_value()
1242 if (symp->flags.resolved) in resolve_symbol_value()
1255 if (!symp->flags.resolved) in resolve_symbol_value()
1265 resolved = 0; in resolve_symbol_value()
1274 resolved = 1; in resolve_symbol_value()
1300 resolved = 0; in resolve_symbol_value()
[all …]
/netbsd-src/external/bsd/unbound/dist/iterator/
H A Diter_delegpt.c82 copy->nslist->resolved = ns->resolved; in delegpt_copy()
126 ns->resolved = 0; in delegpt_add_ns()
189 ns->resolved = 1; in delegpt_add_target()
255 if(!ns->resolved) in delegpt_count_ns()
303 (ns->resolved?"*":""), in delegpt_log()
391 if(ns->resolved) continue; in delegpt_count_missing_targets()
555 ns->resolved = 1; in delegpt_mark_neg()
578 ns->resolved = 1; in delegpt_no_ipv6()
588 ns->resolved = 1; in delegpt_no_ipv4()
665 ns->resolved = 0; in delegpt_add_ns_mlc()
[all …]
/netbsd-src/external/bsd/nvi/dist/
H A DREADME.DB311 being resolved against the newer db.
16 resolved. In case you use the Gnu linker (ld), this can be accomplished
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-tic30.c210 int resolved; member
227 int resolved; member
421 current_op->direct.resolved = 1; in tic30_operand()
428 current_op->direct.resolved = 1; in tic30_operand()
602 current_op->immediate.resolved = 1; in tic30_operand()
615 current_op->immediate.resolved = 1; in tic30_operand()
1721 if (insn.operand_type[am_insn]->direct.resolved == 1) in md_assemble()
1740 if (insn.operand_type[0]->immediate.resolved == 1) in md_assemble()
1823 if (insn.operand_type[0]->immediate.resolved == 1) in md_assemble()
1848 else if (insn.operand_type[1]->immediate.resolved == 1) in md_assemble()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-tic30.c210 int resolved; member
227 int resolved; member
421 current_op->direct.resolved = 1; in tic30_operand()
428 current_op->direct.resolved = 1; in tic30_operand()
602 current_op->immediate.resolved = 1; in tic30_operand()
615 current_op->immediate.resolved = 1; in tic30_operand()
1721 if (insn.operand_type[am_insn]->direct.resolved == 1) in md_assemble()
1740 if (insn.operand_type[0]->immediate.resolved == 1) in md_assemble()
1823 if (insn.operand_type[0]->immediate.resolved == 1) in md_assemble()
1848 else if (insn.operand_type[1]->immediate.resolved == 1) in md_assemble()
[all …]
/netbsd-src/external/bsd/ipf/dist/lib/
H A Dipft_tx.c47 static u_32_t tx_hostnum(host, resolved) in tx_hostnum() argument
49 int *resolved;
53 *resolved = 0;
60 *resolved = -1;
/netbsd-src/sbin/fsck_ffs/
H A Dmain.c120 char resolved; variable
408 resolved = 1; in checkfilesys()
563 if (!resolved || rerun) { in checkfilesys()
/netbsd-src/sys/arch/alpha/alpha/
H A Dfp_complete.c134 uint64_t resolved; /* cases trigger pc found */ member
716 goto resolved; in alpha_fp_complete()
775 ++alpha_shadow.resolved; in alpha_fp_complete()
777 goto resolved; in alpha_fp_complete()
813 resolved: in alpha_fp_complete()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/shtest-format-argv0/
H A Dargv0.txt1 # Check that we route argv[0] as it was written, instead of the resolved
/netbsd-src/crypto/external/bsd/openssl/lib/libcrypto/arch/x86_64/
H A Dsha.inc6 # This cannot be enabled until the SHA-2 symbol mess is resolved:
/netbsd-src/external/apache2/llvm/dist/llvm/docs/AMDGPU/
H A Dgfx10_label.rst18 …eferred from. The value is handled as a 16-bit PC-relative dword offset to be resolved by a linker.
H A Dgfx7_label.rst18 …eferred from. The value is handled as a 16-bit PC-relative dword offset to be resolved by a linker.
/netbsd-src/external/mpl/bind/dist/bin/tests/system/statistics/ns3/
H A Droot.hint15 ; counters that would be immediately resolved if the root

12345678910>>...22