Home
last modified time | relevance | path

Searched refs:streq (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/tools/tools/ath/athprom/
H A Dathprom.c489 #define streq(a,b) (strcasecmp(a,b) == 0) in eevar() macro
491 if (streq(var, "mode")) { in eevar()
496 } else if (streq(var, "version")) { in eevar()
498 } else if (streq(var, "V_major")) { in eevar()
500 } else if (streq(var, "V_minor")) { in eevar()
502 } else if (streq(var, "earStart")) { in eevar()
504 } else if (streq(var, "tpStart")) { in eevar()
506 } else if (streq(var, "eepMap")) { in eevar()
508 } else if (streq(var, "exist32KHzCrystal")) { in eevar()
510 } else if (streq(var, "eepMap2PowerCalStart")) { in eevar()
[all …]
/freebsd/tools/tools/ath/athkey/
H A Dathkey.c97 #define streq(a,b) (strcasecmp(a,b) == 0) in getcipher() macro
99 if (streq(name, "wep")) in getcipher()
101 if (streq(name, "tkip")) in getcipher()
103 if (streq(name, "aes-ocb") || streq(name, "ocb")) in getcipher()
105 if (streq(name, "aes-ccm") || streq(name, "ccm") || in getcipher()
106 streq(name, "aes")) in getcipher()
108 if (streq(name, "ckip")) in getcipher()
110 if (streq(name, "none") || streq(name, "clr")) in getcipher()
115 #undef streq in getcipher()
/freebsd/usr.bin/rpcgen/
H A Drpc_hout.c205 if (streq(decl->type, "bool")) { in puniondef()
216 if (decl && !streq(decl->type, "void")) { in puniondef()
246 } else if (streq(proc->proc_name, stop->proc_name)) { in define_printed()
342 streq(proc->args.decls->decl.type, "void")) { in parglist()
404 if (!streq(name, old)) { in ptypedef()
405 if (streq(old, "string")) { in ptypedef()
408 } else if (streq(old, "opaque")) { in ptypedef()
410 } else if (streq(old, "bool")) { in ptypedef()
448 if (streq(dec->type, "void")) { in pdeclaration()
452 if (streq(dec->type, name) && !dec->prefix) { in pdeclaration()
[all …]
H A Drpc_util.c78 streq(const char *a, const char *b) in streq() function
116 return (streq(def->def_name, type)); in findit()
130 if (streq(def->def.ty.old_type, "opaque")) in fixit()
151 if (streq(type, "string")) { in stringfix()
162 if (streq(prefix, "enum")) { in ptype()
168 if (streq(type, "bool")) { in ptype()
170 } else if (streq(type, "string")) { in ptype()
183 return (streq(def->def_name, type)); in typedefed()
195 return (!streq(type, "string")); in isvectordef()
H A Drpc_parse.c160 if (streq(plist->res_type, "opaque")) { in def_program()
175 if (streq(dec.type, "void")) in def_program()
189 if (streq(dec.type, "void")) in def_program()
415 if (streq(dec->type, "void")) { in get_declaration()
447 if (streq(dec->type, "opaque")) { in get_declaration()
451 } else if (streq(dec->type, "string")) { in get_declaration()
484 if (streq(dec->type, "void")) { in get_prog_declaration()
488 if (streq(dec->type, "opaque")) { in get_prog_declaration()
492 if (streq(dec->type, "string")) { in get_prog_declaration()
502 if (!streq(dec->type, "string")) { in get_prog_declaration()
[all …]
H A Drpc_sample.c101 if(!streq(proc->args.decls->decl.type, "void")) in write_sample_client()
109 } else if (!streq(proc->args.decls->decl.type, "void")) { in write_sample_client()
140 if(streq(proc->args.decls->decl.type, "void")) in write_sample_client()
151 } else if (streq(proc->args.decls->decl.type, "void")) { in write_sample_client()
206 if(!streq(proc->res_type, "void")) in write_sample_server()
219 if(!streq(proc->res_type, "void")) in write_sample_server()
H A Drpc_cout.c103 return (streq(def->def_name, type)); in findtype()
181 if (streq(type, "bool")) { in print_ifsizeof()
220 if (streq(type, "string")) { in print_ifstat()
222 } else if (streq(type, "opaque")) { in print_ifstat()
239 if (streq(type, "string")) { in print_ifstat()
241 } else if (streq(type, "opaque")) { in print_ifstat()
244 if (streq(type, "string")) { in print_ifstat()
323 if (!streq(cs->type, "void")) { in emit_union()
341 if (!streq(dflt->type, "void")) { in emit_union()
H A Drpc_clntout.c124 } else if (streq(proc->args.decls->decl.type, "void")) { in printarglist()
178 if (streq(proc->res_type, "void")) { in printbody()
190 (streq(proc->args.decls->decl.type, "void"))) { in printbody()
260 if (streq(proc->res_type, "void")) { in printbody()
H A Drpc_svcout.c361 if (!streq(proc->args.decls->decl.type, "void")) in write_real_program()
399 if (streq(proc->args.decls->decl.type, in write_program()
426 if (streq(proc->res_type, "void")) { in write_program()
568 if (streq(proc->proc_num, "0")) { in nullproc()
964 if (streq(transp, "udp")) in write_inetd_register()
H A Drpc_main.c237 if (infile != NULL && streq(outfile, infile)) { in open_output()
971 if (streq(argv[i], "-s")) { in do_registers()
981 if (streq(argv[i], "-s")) { in do_registers()
987 } else if (streq(argv[i], "-n")) { in do_registers()
H A Drpc_tblout.c153 if (streq(type, "void")) { in printit()
H A Drpc_util.h173 int streq(const char *a, const char *b);
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dfixup_tdescs.c51 if (!streq(iidesc->ii_name, match->m_name)) in matching_iidesc()
106 if (!streq(cpu->t_name, "cpu") || cpu->t_type != STRUCT) in fix_small_cpu_struct()
128 if (!streq(lml->ml_name, "cpu_m_pad") && in fix_small_cpu_struct()
H A Dtdata.c173 return (!streq(tdp1->t_name, tdp2->t_name)); in tdesc_namecmp()
315 return (streq(le->le_name, tmpl->le_name)); in tdata_label_find_cb()
324 if (streq(label, "BASE")) { in tdata_label_find()
H A Diidesc.c78 !streq(src->ii_name, tgt->ii_name)) in iidesc_cmp()
H A Dutil.c51 streq(const char *s1, const char *s2) in streq() function
H A Dctftools.h428 int streq(const char *, const char *);
H A Dmerge.c369 if (!streq(ctdp->t_name, mtdp->t_name)) in equiv_node()
604 !streq(node->ii_name, iif->iif_template->ii_name) || in iidesc_match()
609 !streq(node->ii_owner, iif->iif_template->ii_owner)) in iidesc_match()
H A Doutput.c164 if (streq(iidesc->ii_name, match->iim_name) == 0) in matching_iidesc()
183 streq(iidesc->ii_owner, match->iim_file)) { in matching_iidesc()
H A Dctf.c912 if (matchlbl != NULL && streq(matchlbl, "BASE")) in resurrect_labels()
916 if (matchlbl != NULL && streq(label, matchlbl)) in resurrect_labels()
/freebsd/usr.bin/systat/
H A Dnetcmds.c58 #define streq(a,b) (strcmp(a,b)==0) macro
166 if (proto == NULL || streq(proto, "all")) in selectproto()
168 else if (streq(proto, "tcp")) in selectproto()
170 else if (streq(proto, "udp")) in selectproto()
H A Dnetstat.c86 #define streq(a,b) (strcmp(a,b)==0) macro
392 if (!streq(proto, p->ni_proto)) in enter()
501 if (streq(p->ni_proto, "tcp")) { in shownetstat()
/freebsd/contrib/sendmail/libsm/
H A DMakefile.m447 smcheck(`t-streq', `compile')
48 smcheck(`t-streq.sh', `run')
H A Dt-streq.sh13 PRG=./t-streq
/freebsd/tools/tools/crypto/
H A Dcryptotest.c107 #define streq(a,b) (strcasecmp(a,b) == 0) macro
188 if (streq(name, algorithms[i].name)) in getalgbyname()
571 if (streq(optarg, "rijndael")) in main()

12