Home
last modified time | relevance | path

Searched refs:lname (Results 1 – 18 of 18) sorted by relevance

/dragonfly/usr.sbin/clog/
HDclog.c59 static void init_log(const char *lname, size_t size) __dead2;
60 static void read_log(const char *lname, int optf) __dead2;
122 read_log(const char *lname, int optf) in read_log() argument
136 fd = open(lname,O_RDONLY); in read_log()
138 … fprintf(stderr,"%s: ERROR: could not open %s (%s)\n",pname,lname,strerror(errno)); in read_log()
143 … fprintf(stderr,"%s: ERROR: could not stat %s (%s)\n",pname,lname,strerror(errno)); in read_log()
148 … fprintf(stderr,"%s: ERROR: could not mmap %s body (%s)\n",pname,lname,strerror(errno)); in read_log()
185 init_log(const char *lname, size_t size) in init_log() argument
197 fd = open(lname,O_RDWR|O_CREAT,0666); in init_log()
199 … fprintf(stderr,"%s: ERROR: could not open %s (%s)\n",pname,lname,strerror(errno)); in init_log()
[all …]
/dragonfly/contrib/binutils-2.34/libctf/
HDctf-labels.c70 const char *lname; in ctf_label_iter() local
81 if ((lname = ctf_strraw (fp, ctlp->ctl_label)) == NULL) in ctf_label_iter()
89 if ((rc = func (lname, &linfo, arg)) != 0) in ctf_label_iter()
103 label_info_cb (const char *lname, const ctf_lblinfo_t *linfo, void *arg) in label_info_cb() argument
108 if (strcmp (lname, ((linfo_cb_arg_t *) arg)->lca_name) == 0) in label_info_cb()
123 ctf_label_info (ctf_file_t *fp, const char *lname, ctf_lblinfo_t *linfo) in ctf_label_info() argument
128 cb_arg.lca_name = lname; in ctf_label_info()
/dragonfly/crypto/libressl/crypto/x509/
HDx509_bitst.c137 for (bnam = method->usr_data; bnam->lname != NULL; bnam++) { in STACK_OF()
140 if (!X509V3_add_value(bnam->lname, NULL, &ret)) in STACK_OF()
167 for (bnam = method->usr_data; bnam->lname; bnam++) { in v2i_ASN1_BIT_STRING()
169 !strcmp(bnam->lname, val->name) ) { in v2i_ASN1_BIT_STRING()
179 if (!bnam->lname) { in v2i_ASN1_BIT_STRING()
HDx509_enum.c102 for (enam = method->usr_data; enam->lname; enam++) { in i2s_ASN1_ENUMERATED_TABLE()
104 return strdup(enam->lname); in i2s_ASN1_ENUMERATED_TABLE()
HDx509_crld.c229 for (pbn = reason_flags; pbn->lname; pbn++) { in set_reasons()
237 if (!pbn->lname) in set_reasons()
254 for (pbn = reason_flags; pbn->lname; pbn++) { in print_reasons()
260 BIO_puts(out, pbn->lname); in print_reasons()
/dragonfly/crypto/libressl/crypto/asn1/
HDa_bitstr.c194 for (bnam = tbl; bnam->lname; bnam++) { in ASN1_BIT_STRING_name_print()
198 BIO_puts(out, bnam->lname); in ASN1_BIT_STRING_name_print()
227 for (bnam = tbl; bnam->lname; bnam++) { in ASN1_BIT_STRING_num_asc()
229 !strcmp(bnam->lname, name)) in ASN1_BIT_STRING_num_asc()
/dragonfly/lib/libc/citrus/
HDcitrus_module.c178 char *lname; in _findshlib() local
190 lname = name; in _findshlib()
207 if (strncmp(dp->d_name, lname, (size_t)len) != 0) in _findshlib()
/dragonfly/sys/kern/
HDsubr_module.c92 caddr_t curp, lname; in preload_search_by_type() local
99 lname = NULL; in preload_search_by_type()
107 lname = curp; in preload_search_by_type()
112 return(lname); in preload_search_by_type()
/dragonfly/crypto/openssh/
HDgss-serv.c101 char lname[NI_MAXHOST]; in ssh_gssapi_acquire_cred() local
108 if (gethostname(lname, HOST_NAME_MAX)) { in ssh_gssapi_acquire_cred()
113 if (GSS_ERROR(ssh_gssapi_import_name(ctx, lname))) { in ssh_gssapi_acquire_cred()
HDsftp.c905 char *lname; in do_ls_dir() local
910 lname = ls_file(fname, &sb, 1, in do_ls_dir()
914 mprintf("%s\n", lname); in do_ls_dir()
915 free(lname); in do_ls_dir()
973 char *fname, *lname; in do_globbed_ls() local
1051 lname = ls_file(fname, g.gl_statv[i], 1, in do_globbed_ls()
1055 mprintf("%s\n", lname); in do_globbed_ls()
1056 free(lname); in do_globbed_ls()
HDsshconnect2.c2132 char *fp = NULL, *chost = NULL, *lname = NULL; in userauth_hostbased() local
2191 lname = get_local_name(ssh_packet_get_connection_in(ssh)); in userauth_hostbased()
2192 if (lname == NULL) { in userauth_hostbased()
2198 xasprintf(&chost, "%s.", lname); in userauth_hostbased()
2251 free(lname); in userauth_hostbased()
/dragonfly/stand/boot/pc32/btxld/
HDbtxld.c83 static const char *lname = variable
151 lname = optarg; in main()
199 fname = i == I_LDR ? lname : i == I_BTX ? bname : iname; in btxld()
252 fname = i == I_LDR ? lname : i == I_BTX ? bname : iname; in btxld()
/dragonfly/contrib/wpa_supplicant/src/utils/
HDxml-utils.c313 const char *lname; in get_first_child_node() local
318 lname = xml_node_get_localname(ctx, child); in get_first_child_node()
319 if (os_strcasecmp(lname, name) == 0) in get_first_child_node()
/dragonfly/sbin/fsck_msdosfs/
HDdosfs.h115 char lname[DOSLONGNAMELEN]; /* real name */ member
HDdir.c166 np = dir->lname[0] ? dir->lname : dir->name; in fullpath()
796 strlcpy(dirent.lname, longName, in readDosDirSection()
797 sizeof(dirent.lname)); in readDosDirSection()
/dragonfly/contrib/gcc-8.0/gcc/
HDtimevar.c759 char lname[256]; in print() local
760 snprintf (lname, 256, "`- %s", tv2->name); in print()
761 print_row (fp, total, lname, (*i).second); in print()
/dragonfly/crypto/libressl/include/openssl/
HDasn1.h490 const char *lname; member
/dragonfly/contrib/tcsh-6/
HDcomplete.tcsh179 lname empty path regex used xtype fprint fprint0 fprintf print0 \