Searched refs:inf (Results 26 - 50 of 124) sorted by relevance

12345

/freebsd-11-stable/usr.sbin/config/
H A Dmkoptions.c147 FILE *inf, *outf; local
174 inf = fopen(file, "r");
175 if (inf == NULL) {
203 if ((inw = get_word(inf)) == NULL || inw == (char *)EOF)
206 if ((inw = get_word(inf)) == NULL || inw == (char *)EOF)
210 if ((cp = get_word(inf)) == NULL || cp == (char *)EOF)
242 cp = get_word(inf);
246 (void)fclose(inf);
/freebsd-11-stable/usr.bin/ctags/
H A Dctags.c67 FILE *inf; /* ioptr for current input file */ variable
70 long lineftell; /* ftell after getc( inf ) == '\n' */
150 if (!(inf = fopen(argv[step], "r"))) {
157 (void)fclose(inf);
285 rewind(inf);
302 rewind(inf);
318 rewind(inf);
H A DC.c65 lineftell = ftell(inf);
126 (void)ungetc(c, inf);
204 (void)ungetc(c, inf);
308 (void)ungetc(c, inf);
332 (void)ungetc(c, inf);
423 (void)ungetc(c, inf);
519 (void)ungetc(c, inf);
/freebsd-11-stable/usr.bin/tcopy/
H A Dtcopy.c82 const char *inf; local
117 inf = _PATH_DEFTAPE;
122 inf = argv[0];
127 inf = argv[0];
136 if ((inp = open(inf, O_RDONLY, 0)) < 0)
137 err(1, "%s", inf);
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dby_file.c246 STACK_OF(X509_INFO) *inf;
257 inf = PEM_X509_INFO_read_bio(in, NULL, NULL, "");
259 if (!inf) {
263 for (i = 0; i < sk_X509_INFO_num(inf); i++) {
264 itmp = sk_X509_INFO_value(inf, i);
274 sk_X509_INFO_pop_free(inf, X509_INFO_free);
/freebsd-11-stable/contrib/unbound/daemon/
H A Dremote.c1620 struct del_info* inf = (struct del_info*)arg; local
1622 if(sockaddr_cmp(&inf->addr, inf->addrlen, &k->addr, k->addrlen) == 0) {
1629 if(d->ttl > inf->expired) {
1630 d->ttl = inf->expired;
1631 inf->num_keys++;
1642 struct del_info inf; local
1654 inf.worker = worker;
1655 inf.name = 0;
1656 inf
1683 struct del_info* inf = (struct del_info*)arg; local
1700 struct del_info* inf = (struct del_info*)arg; local
1718 struct del_info* inf = (struct del_info*)arg; local
1736 struct del_info inf; local
1773 struct del_info* inf = (struct del_info*)arg; local
1786 struct del_info* inf = (struct del_info*)arg; local
1799 struct del_info* inf = (struct del_info*)arg; local
1811 struct del_info inf; local
1840 struct del_info* inf = (struct del_info*)arg; local
1857 struct del_info* inf = (struct del_info*)arg; local
1872 struct del_info* inf = (struct del_info*)arg; local
1886 struct del_info inf; local
[all...]
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_implode.c166 int inf; local
173 inf = 1;
177 inf = 0;
181 inf = sign == 0;
185 inf = sign;
188 if (inf)
190 return (inf);
357 /* overflow to inf or to max single */
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dtasn_dec.c77 static int asn1_find_end(const unsigned char **in, long len, char inf);
80 char inf, int tag, int aclass, int depth);
85 char *inf, char *cst,
760 char cst, inf, free_cont = 0; local
804 ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst,
831 if (inf) {
832 if (!asn1_find_end(&p, plen, inf))
855 if (!asn1_collect(&buf, &p, plen, inf, -1, V_ASN1_UNIVERSAL, 0)) {
1031 static int asn1_find_end(const unsigned char **in, long len, char inf) argument
1037 if (inf
1093 asn1_collect(BUF_MEM *buf, const unsigned char **in, long len, char inf, int tag, int aclass, int depth) argument
1187 asn1_check_tlen(long *olen, int *otag, unsigned char *oclass, char *inf, char *cst, const unsigned char **in, long len, int exptag, int expclass, char opt, ASN1_TLC *ctx) argument
[all...]
H A Dx_crl.c362 X509_CRL_INFO *inf;
363 inf = crl->crl;
364 if (!inf->revoked)
365 inf->revoked = sk_X509_REVOKED_new(X509_REVOKED_cmp);
366 if (!inf->revoked || !sk_X509_REVOKED_push(inf->revoked, rev)) {
370 inf->enc.modified = 1;
H A Da_d2i_fp.c188 c.inf = ASN1_get_object(&(c.p), &(c.slen), &(c.tag), &(c.xclass),
190 if (c.inf & 0x80) {
202 if (c.inf & 1) {
H A Da_set.c189 c.inf = ASN1_get_object(&c.p, &c.slen, &c.tag, &c.xclass, c.max - c.p);
190 if (c.inf & 0x80)
208 if (c.inf == (V_ASN1_CONSTRUCTED + 1))
H A Da_int.c288 int inf, tag, xclass; local
299 inf = ASN1_get_object(&p, &len, &tag, &xclass, length);
300 if (inf & 0x80) {
H A Da_object.c261 int inf, i; local
264 inf = ASN1_get_object(&p, &len, &tag, &xclass, length);
265 if (inf & 0x80) {
/freebsd-11-stable/sys/dev/aacraid/
H A Daacraid_cam.c102 struct aac_sim *inf; member in struct:aac_cam
193 if (camsc == NULL || camsc->inf == NULL ||
194 camsc->inf->BusNumber != channel)
248 if (!camsc->inf)
250 fwprintf(camsc->inf->aac_sc, HBA_FLAGS_DBG_FUNCTION_ENTRY_B, "");
261 if (!camsc->inf)
263 sc = camsc->inf->aac_sc;
265 camsc->inf->aac_cam = NULL;
291 struct aac_sim *inf; local
294 inf
[all...]
/freebsd-11-stable/usr.bin/rpcinfo/
H A Drpcinfo.c985 rpcb_stat_byvers inf; local
1024 memset((char *)&inf, 0, sizeof (rpcb_stat_byvers));
1026 (xdrproc_t) xdr_rpcb_stat_byvers, (char *)&inf, minutetimeout)
1037 sprintf(fieldbuf, "%d/", inf[RPCBVERS_2_STAT].setinfo);
1041 inf[RPCBVERS_2_STAT].unsetinfo);
1045 for (pa = inf[RPCBVERS_2_STAT].addrinfo; pa;
1052 for (pr = inf[RPCBVERS_2_STAT].rmtinfo; pr;
1060 sprintf(cp, "%d", inf[RPCBVERS_2_STAT].info[i]);
1072 if (inf[RPCBVERS_2_STAT].info[PMAPPROC_CALLIT]) {
1074 print_rmtcallstat(RPCBVERS_2_STAT, &inf[RPCBVERS_2_STA
[all...]
/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu_implode.c165 int inf; local
171 inf = 1;
175 inf = 0;
179 inf = sign == 0;
183 inf = sign;
186 return (inf);
367 /* overflow to inf or to max single */
/freebsd-11-stable/sys/dev/hyperv/netvsc/
H A Dndis.h371 #define NDIS_VLAN_INFO_ID(inf) (((inf) & NDIS_VLAN_INFO_ID_MASK) >> 4)
372 #define NDIS_VLAN_INFO_CFI(inf) (((inf) & NDIS_VLAN_INFO_CFI_MASK) >> 3)
373 #define NDIS_VLAN_INFO_PRI(inf) ((inf) & NDIS_VLAN_INFO_PRI_MASK)
/freebsd-11-stable/usr.bin/fortune/strfile/
H A Dstrfile.c144 FILE *inf, *outf; local
156 if ((inf = fopen(Infile, "r")) == NULL) {
177 add_offset(outf, ftello(inf));
180 sp = fgets(string, 256, inf);
182 pos = ftello(inf);
213 fclose(inf);
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Drcsutil.c766 fastcopy(inf,outf)
767 register RILE *inf;
769 /* Function: copies the remainder of file inf to outf.
774 awrite((char const*)inf->ptr, (size_t)(inf->lim - inf->ptr), outf);
775 inf->ptr = inf->lim;
778 awrite((char const*)inf->ptr, (size_t)(inf
[all...]
/freebsd-11-stable/contrib/gdb/gdb/gdbserver/
H A Dregcache.c46 get_regcache (struct thread_info *inf, int fetch) argument
50 regcache = (struct inferior_regcache_data *) inferior_regcache_data (inf);
/freebsd-11-stable/sys/kern/
H A Dsubr_module.c156 * to the data for the attribute (inf).
159 preload_search_info(caddr_t mod, int inf) argument
191 if (hdr[0] == inf)
/freebsd-11-stable/crypto/openssl/crypto/
H A Dmem_dbg.c198 static void app_info_free(APP_INFO *inf) argument
200 if (--(inf->references) <= 0) {
201 if (inf->next != NULL) {
202 app_info_free(inf->next);
204 OPENSSL_free(inf);
/freebsd-11-stable/sbin/setkey/
H A Dsetkey.c381 char inf[80]; local
385 snprintf(inf, sizeof(inf), "The result of line %d: ", lineno);
387 inf[0] = '\0';
408 printf("%s%s.\n", inf, errmsg);
/freebsd-11-stable/usr.bin/limits/
H A Dlimits.c67 const char * inf; /* Name used for 'unlimited' resource */ member in struct:__anon8633
262 static void print_limit(rlim_t limit, unsigned divisor, const char *inf,
518 shellparm[shelltype].inf,
526 shellparm[shelltype].inf,
534 shellparm[shelltype].inf,
559 print_limit(rlim_t limit, unsigned divisor, const char * inf, const char * pfx, const char * sfx, const char * which) argument
564 strlcpy(numbr, inf, sizeof(numbr));
579 !(strcasecmp(str, "inf") == 0 ||
/freebsd-11-stable/usr.bin/fortune/fortune/
H A Dfortune.c88 FILE *inf; member in struct:fd
226 fseeko(fp->inf, Seekpts[0], SEEK_SET);
227 for (Fort_len = 0; fgets(line, sizeof line, fp->inf) != NULL &&
261 fseeko(Fortfile->inf, Seekpts[0], SEEK_SET);
263 while (fgets(line, sizeof line, Fortfile->inf) != NULL &&
604 fp->inf = NULL;
681 obscene->inf = NULL;
1077 if (fp->inf == NULL && (fp->inf = fdopen(fp->fd, "r")) == NULL) {
1333 while (fgets(sp, Fort_len, fp->inf) !
[all...]

Completed in 490 milliseconds

12345