Searched refs:strcmp (Results 276 - 300 of 3564) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dtest_plugin.c69 if (strcmp(realm, "NOTHERE.H5L.SE") == 0)
116 if (strcmp(host, "127.0.0.2") != 0)
/freebsd-11-stable/sys/dev/puc/
H A Dpuc_pccard.c68 if (!strcmp(vendor, "PCMCIA") && !strcmp(product, "RS-COM 2P"))
/freebsd-11-stable/sys/mips/rmi/
H A Diodi.c101 if (strcmp(name, "uart") == 0) {
106 } else if (strcmp(name, "nlge") == 0) {
114 } else if (strcmp(name, "ehci") == 0) {
118 } else if (strcmp(name, "ata") == 0) {
153 if (strcmp(name, "uart") == 0) {
162 } else if (strcmp(name, "ehci") == 0) {
165 } else if (strcmp(name, "cfi") == 0) {
168 } else if (strcmp(name, "ata") == 0) {
/freebsd-11-stable/tools/regression/p1003_1b/
H A Dmain.c44 if (argc == 2 && strcmp(argv[1], "-a") == 0) {
75 if (strcmp(tab[i].t, argv[1]) == 0)
/freebsd-11-stable/usr.bin/gprof/
H A Dprintlist.c82 if ( ! strcmp( slp -> string , funcname ) ) {
85 if ( funcname[0] == '_' && ! strcmp( slp -> string , &funcname[1] ) ) {
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_bitst.c122 if (!strcmp(bnam->sname, val->name) ||
123 !strcmp(bnam->lname, val->name)) {
/freebsd-11-stable/usr.sbin/lpr/common_source/
H A Drmjob.c105 if (!strcmp(person, "-all")) {
244 if (all && (from_host == local_host || !strcmp(from_host, cfhost)))
263 return(!strcmp(file, current) && isowner(line+1, file, cfhost));
274 if (!strcmp(*u, line+1) && isowner(line+1, file, cfhost))
288 if (!strcmp(person, root) && (from_host == local_host ||
289 !strcmp(from_host, cfhost)))
291 if (!strcmp(person, owner) && !strcmp(from_host, cfhost))
/freebsd-11-stable/lib/libc/i386/string/
H A DMakefile.inc15 strcmp.S \
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/inet/
H A Dt_inet_addr.c67 ATF_CHECK(strcmp(ian, addrs[i]) == 0);
98 ATF_CHECK(strcmp(ian, addrs[i]) != 0);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_getsockname.c58 ATF_CHECK(strcmp(sun.sun_path, "") == 0);
70 ATF_CHECK(strcmp(sun.sun_path, path) == 0);
/freebsd-11-stable/usr.sbin/eeprom/
H A Dofw_options.c128 if (strcmp(val, "full") == 0 || strcmp(val, "command") == 0) {
137 if (strcmp(val, "none") == 0) {
193 if (strcmp(pwd1, pwd2) != 0) {
262 if (strcmp(prop, "name") == 0)
265 if (strcmp(ex->ex_prop, prop) == 0)
287 if (strcmp(prop, "name") == 0)
299 if (strcmp(ex->ex_prop, prop) == 0)
/freebsd-11-stable/sys/amd64/vmm/
H A Dvmm_util.c43 return (strcmp(cpu_vendor, "GenuineIntel") == 0);
49 return (strcmp(cpu_vendor, "AuthenticAMD") == 0);
/freebsd-11-stable/usr.sbin/pw/
H A Drm_r.c61 if (strcmp(e->d_name, ".") == 0 || strcmp(e->d_name, "..") == 0)
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DClangASTMetadata.h56 if (strcmp(name, "self") == 0)
58 else if (strcmp(name, "this") == 0)
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dt-scanf.c39 if (!SM_TEST(strcmp(buf, r) == 0))
50 if (!SM_TEST(strcmp(buf, r) == 0))
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_set_format.c106 if (!a->format->name || !strcmp(a->format->name, str))
109 if (!a->format->name || strcmp(a->format->name, str))
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dmap_test.c91 ATF_REQUIRE(strcmp(atf_map_citer_key(iter), "K1") == 0);
92 ATF_REQUIRE(strcmp(atf_map_citer_data(iter), "V1") == 0);
96 ATF_REQUIRE(strcmp(atf_map_citer_key(iter), "K2") == 0);
97 ATF_REQUIRE(strcmp(atf_map_citer_data(iter), "V2") == 0);
138 ATF_REQUIRE(strcmp(atf_map_iter_key(iter), "K1") == 0);
139 ATF_REQUIRE(strcmp(atf_map_iter_data(iter), "V1") == 0);
144 ATF_REQUIRE(strcmp(atf_map_iter_key(iter), "K1") == 0);
145 ATF_REQUIRE(strcmp(atf_map_iter_data(iter), "Z1") == 0);
149 ATF_REQUIRE(strcmp(atf_map_iter_key(iter), "K2") == 0);
150 ATF_REQUIRE(strcmp(atf_map_iter_dat
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_testutils.c151 strcmp("*", tab->q))
158 if (!strcmp(tab->anstype, "err")) {
162 } else if (!strcmp(tab->anstype, "errsoa")) {
179 } else if (!strcmp(tab->anstype, "A")) {
186 } else if (!strcmp(tab->anstype, "AAAA")) {
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_passwd.c110 return (strcmp(passwd, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
121 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
152 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
176 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
183 return (strcmp(sample, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
/freebsd-11-stable/contrib/libucl/utils/
H A Ducl-tool.c81 if (strcmp(optarg, "ucl") == 0) {
83 } else if (strcmp(optarg, "json") == 0) {
85 } else if (strcmp(optarg, "yaml") == 0) {
87 } else if (strcmp(optarg, "compact_json") == 0) {
89 } else if (strcmp(optarg, "msgpack") == 0) {
/freebsd-11-stable/crypto/heimdal/appl/login/
H A Dlimits_conf.c157 if(strcmp(args[3], "-") == 0) {
178 if(strcmp(args[0], pwd->pw_name) == 0)
186 if(strcmp(args[0], "*") == 0)
198 if(strcasecmp(args[1], "soft") == 0 || strcmp(args[1], "-") == 0)
200 if(strcasecmp(args[1], "hard") == 0 || strcmp(args[1], "-") == 0)
/freebsd-11-stable/crypto/heimdal/appl/rsh/
H A Dlimits_conf.c157 if(strcmp(args[3], "-") == 0) {
178 if(strcmp(args[0], pwd->pw_name) == 0)
186 if(strcmp(args[0], "*") == 0)
198 if(strcasecmp(args[1], "soft") == 0 || strcmp(args[1], "-") == 0)
200 if(strcasecmp(args[1], "hard") == 0 || strcmp(args[1], "-") == 0)
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dslc-gram.y139 if(strcmp(a->name, "long") == 0)
141 else if(strcmp(a->name, "short") == 0)
143 else if(strcmp(a->name, "name") == 0)
145 else if(strcmp(a->name, "type") == 0)
147 else if(strcmp(a->name, "argument") == 0)
149 else if(strcmp(a->name, "help") == 0)
151 else if(strcmp(a->name, "default") == 0)
205 if(strcmp(a->name, "name") == 0)
207 else if(strcmp(a->name, "function") == 0) {
209 } else if(strcmp(
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dfmtmsg.c136 if (strcmp(comp, "label") == 0 && label != MM_NULLLBL) {
139 } else if (strcmp(comp, "severity") == 0 && sevname != NULL) {
142 } else if (strcmp(comp, "text") == 0 && text != MM_NULLTXT) {
145 } else if (strcmp(comp, "action") == 0 && act != MM_NULLACT) {
149 } else if (strcmp(comp, "tag") == 0 && tag != MM_NULLTAG) {
/freebsd-11-stable/usr.bin/numactl/
H A Dnumactl.c86 if (strcmp(str, "rr") == 0) {
92 if (strcmp(str, "first-touch-rr") == 0) {
98 if (strcmp(str, "first-touch") == 0) {
104 if (strcmp(str, "fixed-domain") == 0) {
110 if (strcmp(str, "fixed-domain-rr") == 0) {

Completed in 414 milliseconds

<<11121314151617181920>>