| /NextBSD/contrib/dtc/ |
| HD | srcpos.c | 73 char *fullname; in try_open() local 76 fullname = xstrdup(fname); in try_open() 78 fullname = join_path(dirname, fname); in try_open() 80 *fp = fopen(fullname, "r"); in try_open() 82 free(fullname); in try_open() 83 fullname = NULL; in try_open() 86 return fullname; in try_open() 102 char *fullname; in fopen_any_on_path() local 108 fullname = try_open(cur_dir, fname, fp); in fopen_any_on_path() 112 fullname = try_open(node->dirname, fname, fp); in fopen_any_on_path() [all …]
|
| /NextBSD/usr.bin/keylogin/ |
| HD | keylogin.c | 56 char fullname[MAXNETNAMELEN + 1]; in main() local 59 if (!getnetname(fullname)) { in main() 65 if (! getsecretkey(fullname, (char *)&(netst.st_priv_key), in main() 67 fprintf(stderr, "Can't find %s's secret key\n", fullname); in main() 71 fprintf(stderr, "Password incorrect for %s\n", fullname); in main() 76 netst.st_netname = strdup(fullname); in main() 79 fprintf(stderr, "Could not set %s's secret key\n", fullname); in main()
|
| /NextBSD/bin/sh/ |
| HD | main.c | 294 char *fullname; in find_dot_file() local 302 while ((fullname = padvance(&path, basename)) != NULL) { in find_dot_file() 303 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) { in find_dot_file() 308 return fullname; in find_dot_file() 310 stunalloc(fullname); in find_dot_file() 318 char *filename, *fullname; in dotcmd() local 331 fullname = find_dot_file(filename); in dotcmd() 332 setinputfile(fullname, 1); in dotcmd() 333 commandname = fullname; in dotcmd()
|
| HD | exec.c | 324 char *fullname; in find_command() local 365 for (;(fullname = padvance(&path, name)) != NULL; stunalloc(fullname)) { in find_command() 374 if (fullname[0] != '/') in find_command() 376 if (stat(fullname, &statb) < 0) { in find_command() 385 readcmdfile(fullname); in find_command() 387 error("%s not defined in %s", name, fullname); in find_command() 388 stunalloc(fullname); in find_command() 403 TRACE(("searchexec \"%s\" returns \"%s\"\n", name, fullname)); in find_command() 405 stunalloc(fullname); in find_command()
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | source.c | 331 if (s->fullname != NULL) in forget_cached_source_info() 333 xmfree (objfile->md, s->fullname); in forget_cached_source_info() 334 s->fullname = NULL; in forget_cached_source_info() 340 if (pst->fullname != NULL) in forget_cached_source_info() 342 xfree (pst->fullname); in forget_cached_source_info() 343 pst->fullname = NULL; in forget_cached_source_info() 605 if (s->fullname) in source_info() 606 printf_filtered ("Located in %s\n", s->fullname); in source_info() 818 char *fullname; in open_source_file() local 821 if (s->fullname) in open_source_file() [all …]
|
| HD | symmisc.c | 160 if (s->fullname != NULL) in free_symtab() 161 xmfree (s->objfile->md, s->fullname); in free_symtab() 1020 symtab->fullname ? symtab->fullname : "(null)"); in maintenance_info_symtabs() 1069 psymtab->fullname ? psymtab->fullname : "(null)"); in maintenance_info_psymtabs()
|
| HD | symtab.h | 842 char *fullname; member 878 char *fullname; member
|
| HD | symtab.c | 271 if (pst->fullname == NULL) in lookup_partial_symtab() 272 source_full_path_of (pst->filename, &pst->fullname); in lookup_partial_symtab() 273 if (pst->fullname != NULL in lookup_partial_symtab() 274 && FILENAME_CMP (full_path, pst->fullname) == 0) in lookup_partial_symtab() 283 if (pst->fullname == NULL) in lookup_partial_symtab() 284 source_full_path_of (pst->filename, &pst->fullname); in lookup_partial_symtab() 285 if (pst->fullname != NULL) in lookup_partial_symtab() 287 rp = gdb_realpath (pst->fullname); in lookup_partial_symtab()
|
| /NextBSD/contrib/ntp/ntpd/ |
| HD | ntp_filegen.c | 104 char *fullname; /* name with any designation extension */ in filegen_open() local 115 fullname = emalloc(len); in filegen_open() 120 suflen = strlcpy(fullname, filename, len); in filegen_open() 121 suffix = fullname + suflen; in filegen_open() 125 fullname[len - 1] = '\0'; in filegen_open() 202 if ('\0' != fullname[len - 1]) { in filegen_open() 203 fullname[len - 1] = '\0'; in filegen_open() 205 fullname); in filegen_open() 283 gen->type, stamp, fullname)); in filegen_open() 285 fp = fopen(fullname, "a"); in filegen_open() [all …]
|
| /NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| HD | dsl_bookmark.c | 34 dsl_bookmark_hold_ds(dsl_pool_t *dp, const char *fullname, in dsl_bookmark_hold_ds() argument 40 if (strlen(fullname) >= MAXNAMELEN) in dsl_bookmark_hold_ds() 42 hashp = strchr(fullname, '#'); in dsl_bookmark_hold_ds() 49 (void) strlcpy(buf, fullname, hashp - fullname + 1); in dsl_bookmark_hold_ds() 88 dsl_bookmark_lookup(dsl_pool_t *dp, const char *fullname, in dsl_bookmark_lookup() argument 95 error = dsl_bookmark_hold_ds(dp, fullname, &ds, FTAG, &shortname); in dsl_bookmark_lookup() 364 const char *fullname = nvpair_name(pair); in dsl_bookmark_destroy_check() local 370 error = dsl_bookmark_hold_ds(dp, fullname, &ds, in dsl_bookmark_destroy_check() 388 fnvlist_add_boolean(dbda->dbda_success, fullname); in dsl_bookmark_destroy_check() 390 fnvlist_add_int32(dbda->dbda_errors, fullname, error); in dsl_bookmark_destroy_check()
|
| /NextBSD/usr.bin/patch/ |
| HD | util.c | 356 char *fullname, *name, *t; in fetchname() local 371 name = fullname = t = savestr(at); in fetchname() 388 if (strip_leading == 957 && name != fullname && *fullname != '/') { in fetchname() 390 if (stat(fullname, &filestat) == 0 && S_ISDIR(filestat.st_mode)) { in fetchname() 392 name = fullname; in fetchname() 396 free(fullname); in fetchname()
|
| /NextBSD/contrib/gdb/gdb/mi/ |
| HD | mi-cmd-file.c | 54 if (st.symtab->fullname == NULL) in mi_cmd_file_list_exec_source_file() 58 if (st.symtab->fullname == NULL) in mi_cmd_file_list_exec_source_file() 64 ui_out_field_string (uiout, "fullname", st.symtab->fullname); in mi_cmd_file_list_exec_source_file()
|
| /NextBSD/contrib/bmake/ |
| HD | parse.c | 2161 char *fullname; /* full pathname of file */ in Parse_include_file() local 2172 fullname = file[0] == '/' ? bmake_strdup(file) : NULL; in Parse_include_file() 2174 if (fullname == NULL && !isSystem) { in Parse_include_file() 2195 fullname = Dir_FindFile(newName, parseIncPath); in Parse_include_file() 2196 if (fullname == NULL) in Parse_include_file() 2197 fullname = Dir_FindFile(newName, dirSearchPath); in Parse_include_file() 2202 if (fullname == NULL) { in Parse_include_file() 2215 fullname = Dir_FindFile(file, suffPath); in Parse_include_file() 2218 if (fullname == NULL) { in Parse_include_file() 2219 fullname = Dir_FindFile(file, parseIncPath); in Parse_include_file() [all …]
|
| /NextBSD/contrib/ntp/sntp/libevent/test/ |
| HD | tinytest.c | 282 char fullname[LONGEST_TEST_NAME]; local 289 snprintf(fullname, sizeof(fullname), "%s%s", 292 printf(" %s", fullname); 300 if (!strncmp(fullname, arg, length)) {
|
| /NextBSD/sys/dev/aic7xxx/aicasm/ |
| HD | aicasm_scan.l | 468 char fullname[PATH_MAX]; 474 snprintf(fullname, sizeof(fullname), 477 if ((newfile = fopen(fullname, "r")) != NULL)
|
| /NextBSD/contrib/tzcode/stdtime/ |
| HD | localtime.c | 410 char *fullname; local 412 fullname = malloc(FILENAME_MAX + 1); 413 if (fullname == NULL) 421 free(fullname); 425 free(fullname); 428 (void) strcpy(fullname, p); 429 (void) strcat(fullname, "/"); 430 (void) strcat(fullname, name); 436 name = fullname; 439 free(fullname); [all …]
|
| /NextBSD/lib/libosxsupport/ |
| HD | mdns_module.c | 1153 …ags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, const char *fullname, uint16_t rrtype,… in _mdns_query_callback() argument 1165 …_mdns_debug_message(";; [%s %hu %hu]: error %d [ctx %p]\n", fullname, rrtype, rrclass, errorCode, … in _mdns_query_callback() 1186 _mdns_hostent_append_alias(context->host, fullname); in _mdns_query_callback() 1198 char *h_name = _mdns_canonicalize(fullname); in _mdns_query_callback() 1223 …_mdns_debug_message(";; [%s %hu %hu] cname %s [ctx %p]\n", fullname, rrtype, rrclass, name, contex… in _mdns_query_callback() 1266 …_mdns_debug_message(";; [%s %hu %hu]: malformed reply [ctx %p]\n", fullname, rrtype, rrclass, cont… in _mdns_query_callback() 1277 …_mdns_debug_message(";; [%s %hu %hu]: malformed reply (too small) [ctx %p]\n", fullname, rrtype, r… in _mdns_query_callback() 1283 n = _mdns_pack_domain_name(fullname, cp, buflen); in _mdns_query_callback() 1285 …_mdns_debug_message(";; [%s %hu %hu]: name mismatch [ctx %p]\n", fullname, rrtype, rrclass, contex… in _mdns_query_callback() 1293 …_mdns_debug_message(";; [%s %hu %hu]: insufficient buffer space for reply [ctx %p]\n", fullname, r… in _mdns_query_callback() [all …]
|
| /NextBSD/contrib/tzcode/zic/ |
| HD | zic.c | 1454 static char * fullname; local 1532 fullname = erealloc(fullname, 1534 (void) sprintf(fullname, "%s/%s", directory, name); 1539 if (!itsdir(fullname) && remove(fullname) != 0 && errno != ENOENT) 1540 err(EXIT_FAILURE, _("can't remove %s"), fullname); 1542 if ((fp = fopen(fullname, "wb")) == NULL) { 1543 if (mkdirs(fullname) != 0) 1545 if ((fp = fopen(fullname, "wb")) == NULL) 1546 err(EXIT_FAILURE, _("can't create %s"), fullname); 1740 errx(EXIT_FAILURE, _("error writing %s"), fullname); [all …]
|
| /NextBSD/crypto/openssl/crypto/x509v3/ |
| HD | v3_crld.c | 165 (*pdp)->name.fullname = fnm; in set_dist_point_name() 328 point->distpoint->name.fullname = gens; in v2i_crld() 368 ASN1_IMP_SEQUENCE_OF(DIST_POINT_NAME, name.fullname, GENERAL_NAME, 0), 480 print_gens(out, dpn->name.fullname, indent); in print_distpoint()
|
| /NextBSD/contrib/gdb/gdb/cli/ |
| HD | cli-dump.c | 89 char *fullname; in scan_filename_with_cleanup() local 114 fullname = tilde_expand (filename); in scan_filename_with_cleanup() 115 make_cleanup (xfree, fullname); in scan_filename_with_cleanup() 117 return fullname; in scan_filename_with_cleanup()
|
| /NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/ |
| HD | dtest.pl | 275 $fullname = "$dir/$name"; 280 -x $exe || $isksh || -x $fullname)) {
|
| /NextBSD/cddl/contrib/opensolaris/cmd/ztest/ |
| HD | ztest.c | 4653 char fullname[100]; in ztest_dmu_snapshot_hold() local 4664 (void) snprintf(fullname, sizeof (fullname), "%s@%s", osname, snapname); in ztest_dmu_snapshot_hold() 4675 error = user_release_one(fullname, tag); in ztest_dmu_snapshot_hold() 4678 error = dsl_destroy_snapshot(fullname, B_FALSE); in ztest_dmu_snapshot_hold() 4692 fatal(0, "dmu_objset_snapshot(%s) = %d", fullname, error); in ztest_dmu_snapshot_hold() 4695 error = dmu_objset_clone(clonename, fullname); in ztest_dmu_snapshot_hold() 4704 error = dsl_destroy_snapshot(fullname, B_TRUE); in ztest_dmu_snapshot_hold() 4707 fullname, error); in ztest_dmu_snapshot_hold() 4714 error = dmu_objset_hold(fullname, FTAG, &origin); in ztest_dmu_snapshot_hold() 4716 fatal(0, "dmu_objset_hold(%s) = %d", fullname, error); in ztest_dmu_snapshot_hold() [all …]
|
| /NextBSD/crypto/openssl/ |
| HD | README.ASN1 | 149 STACK_OF(GENERAL_NAME) *fullname; 154 This means that name.fullname or name.relativename should be set 155 and type reflects the option. That is if name.fullname is set then
|
| /NextBSD/sys/geom/part/ |
| HD | g_part_if.m | 123 # fullname() - write the name of the given partition entry to the sbuf. 124 METHOD void fullname {
|
| /NextBSD/contrib/compiler-rt/lib/sanitizer_common/scripts/ |
| HD | cpplint.py | 759 fullname = self.FullName() 761 if os.path.exists(fullname): 762 project_dir = os.path.dirname(fullname) 774 return fullname[len(prefix) + 1:] 778 root_dir = os.path.dirname(fullname) 789 return fullname[len(prefix) + 1:] 792 return fullname 3178 fullname = os.path.abspath(filename).replace('\\', '/')
|