Searched refs:strcmp (Results 201 - 225 of 3564) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_read_format_isorr_new_bz2.c81 if (strcmp(".", archive_entry_pathname(ae)) == 0) {
94 } else if (strcmp("dir", archive_entry_pathname(ae)) == 0) {
104 } else if (strcmp("file", archive_entry_pathname(ae)) == 0) {
118 } else if (strcmp("hardlink", archive_entry_pathname(ae)) == 0) {
135 } else if (strcmp("symlink", archive_entry_pathname(ae)) == 0) {
145 } else if (strcmp("symlink2", archive_entry_pathname(ae)) == 0) {
153 } else if (strcmp("symlink3", archive_entry_pathname(ae)) == 0) {
161 } else if (strcmp("symlink4", archive_entry_pathname(ae)) == 0) {
170 } else if (strcmp("symlink5", archive_entry_pathname(ae)) == 0) {
180 } else if (strcmp("symlink
[all...]
H A Dtest_read_format_isorr_bz2.c80 if (strcmp(".", archive_entry_pathname(ae)) == 0) {
93 } else if (strcmp("dir", archive_entry_pathname(ae)) == 0) {
103 } else if (strcmp("file", archive_entry_pathname(ae)) == 0) {
117 } else if (strcmp("hardlink", archive_entry_pathname(ae)) == 0) {
134 } else if (strcmp("symlink", archive_entry_pathname(ae)) == 0) {
144 } else if (strcmp("symlink2", archive_entry_pathname(ae)) == 0) {
152 } else if (strcmp("symlink3", archive_entry_pathname(ae)) == 0) {
160 } else if (strcmp("symlink4", archive_entry_pathname(ae)) == 0) {
169 } else if (strcmp("symlink5", archive_entry_pathname(ae)) == 0) {
179 } else if (strcmp("symlink
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dfstab.c95 if (_fs_fstab.fs_file != NULL && strcmp(_fs_fstab.fs_file, "/") != 0)
133 if (!strcmp(_fs_fstab.fs_type, FSTAB_XX))
137 strcmp(_fs_fstab.fs_type, FSTAB_SW) ?
190 if (!strcmp(cp, FSTAB_RW)) {
194 if (!strcmp(cp, FSTAB_RQ)) {
198 if (!strcmp(cp, FSTAB_RO)) {
202 if (!strcmp(cp, FSTAB_SW)) {
206 if (!strcmp(cp, FSTAB_XX)) {
238 if (!strcmp(_fs_fstab.fs_spec, name))
249 if (!strcmp(_fs_fsta
[all...]
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dofw_machdep.c59 if (strcmp(buf, "true") == 0 &&
102 if (strcmp(bus, "ebus") == 0 || strcmp(bus, "isa") == 0)
104 else if (strcmp(bus, "pci") == 0)
163 if (strcmp(name, "pci") == 0) {
274 if (strcmp(name, "central") == 0 || strcmp(name, "ebus") == 0 ||
275 strcmp(name, "upa") == 0) {
278 } else if (strcmp(name, "pci") == 0) {
287 } else if (strcmp(nam
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmemattr.c159 if (strcmp (tok, "rw") == 0)
161 else if (strcmp (tok, "ro") == 0)
163 else if (strcmp (tok, "wo") == 0)
166 else if (strcmp (tok, "8") == 0)
168 else if (strcmp (tok, "16") == 0)
174 else if (strcmp (tok, "32") == 0)
180 else if (strcmp (tok, "64") == 0)
188 else if (strcmp (tok, "hwbreak") == 0)
190 else if (strcmp (tok, "swbreak") == 0)
194 else if (strcmp (to
[all...]
H A Dosabi.c387 || strcmp (note + 12, name) != 0)
430 if (strcmp (name, ".note.ABI-tag") == 0)
479 if (strcmp (name, ".note.tag") == 0)
505 if (strcmp (name, ".note.netbsd.ident") == 0
514 if (strcmp (name, ".note.openbsd.ident") == 0
523 if (strcmp (name, ".note.netbsdcore.procinfo") == 0)
580 if (strcmp (&elf_elfheader (abfd)->e_ident[8], "FreeBSD") == 0)
593 if (strcmp (set_osabi_string, "auto") == 0)
595 else if (strcmp (set_osabi_string, "default") == 0)
600 else if (strcmp (set_osabi_strin
[all...]
/freebsd-11-stable/crypto/openssl/apps/
H A Ddhparam.c184 if (strcmp(*argv, "-inform") == 0) {
188 } else if (strcmp(*argv, "-outform") == 0) {
192 } else if (strcmp(*argv, "-in") == 0) {
196 } else if (strcmp(*argv, "-out") == 0) {
202 else if (strcmp(*argv, "-engine") == 0) {
208 else if (strcmp(*argv, "-check") == 0)
210 else if (strcmp(*argv, "-text") == 0)
213 else if (strcmp(*argv, "-dsaparam") == 0)
216 else if (strcmp(*argv, "-C") == 0)
218 else if (strcmp(*arg
[all...]
H A Dasn1pars.c123 if (strcmp(*argv, "-inform") == 0) {
127 } else if (strcmp(*argv, "-in") == 0) {
131 } else if (strcmp(*argv, "-out") == 0) {
135 } else if (strcmp(*argv, "-i") == 0) {
137 } else if (strcmp(*argv, "-noout") == 0)
139 else if (strcmp(*argv, "-oid") == 0) {
143 } else if (strcmp(*argv, "-offset") == 0) {
147 } else if (strcmp(*argv, "-length") == 0) {
153 } else if (strcmp(*argv, "-dump") == 0) {
155 } else if (strcmp(*arg
[all...]
H A Dopenssl.c294 if (!(0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off"))) {
494 } else if ((strcmp(argv[0], "quit") == 0) ||
495 (strcmp(argv[0], "q") == 0) ||
496 (strcmp(argv[0], "exit") == 0) ||
497 (strcmp(argv[0], "bye") == 0)) {
500 } else if ((strcmp(argv[0], LIST_STANDARD_COMMANDS) == 0) ||
501 (strcmp(argv[0], LIST_MESSAGE_DIGEST_COMMANDS) == 0) ||
502 (strcmp(argv[0], LIST_MESSAGE_DIGEST_ALGORITHMS) == 0) ||
503 (strcmp(argv[0], LIST_CIPHER_COMMANDS) == 0) ||
504 (strcmp(arg
[all...]
H A Dspeed.c718 if ((argc > 0) && (strcmp(*argv, "-elapsed") == 0)) {
722 } else if ((argc > 0) && (strcmp(*argv, "-evp") == 0)) {
740 } else if (argc > 0 && !strcmp(*argv, "-decrypt")) {
746 else if ((argc > 0) && (strcmp(*argv, "-engine") == 0)) {
763 else if ((argc > 0) && (strcmp(*argv, "-multi") == 0)) {
779 else if (argc > 0 && !strcmp(*argv, "-mr")) {
783 } else if (argc > 0 && !strcmp(*argv, "-mb")) {
788 if (strcmp(*argv, "md2") == 0)
793 if (strcmp(*argv, "mdc2") == 0)
798 if (strcmp(*arg
[all...]
H A Ds_server.c368 if (strcmp(identity, psk_identity) != 0) {
1173 if ((strcmp(*argv, "-port") == 0) || (strcmp(*argv, "-accept") == 0)) {
1178 } else if (strcmp(*argv, "-naccept") == 0) {
1186 } else if (strcmp(*argv, "-verify") == 0) {
1193 } else if (strcmp(*argv, "-Verify") == 0) {
1204 } else if (strcmp(*argv, "-context") == 0) {
1208 } else if (strcmp(*argv, "-cert") == 0) {
1212 } else if (strcmp(*argv, "-CRL") == 0) {
1216 } else if (strcmp(*arg
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dfix-header.c313 strcat\0strchr\0strcmp\0strcoll\0strcpy\0strcspn\0strerror\0\
473 if (strcmp (fname, "errno") == 0 && !seen_errno)
477 if (strcmp (fname, "EXIT_FAILURE") == 0 && !seen_EXIT_FAILURE)
479 if (strcmp (fname, "EXIT_SUCCESS") == 0 && !seen_EXIT_SUCCESS)
485 if (strcmp (fname, "S_IFBLK") == 0) seen_S_IFBLK++;
486 else if (strcmp (fname, "S_ISBLK") == 0) seen_S_ISBLK++;
487 else if (strcmp (fname, "S_IFCHR") == 0) seen_S_IFCHR++;
488 else if (strcmp (fname, "S_ISCHR") == 0) seen_S_ISCHR++;
489 else if (strcmp (fname, "S_IFDIR") == 0) seen_S_IFDIR++;
490 else if (strcmp (fnam
[all...]
/freebsd-11-stable/contrib/binutils/opcodes/
H A Ds390-mkopc.c192 if (strcmp (cpu_string, "g5") == 0)
194 else if (strcmp (cpu_string, "g6") == 0)
196 else if (strcmp (cpu_string, "z900") == 0)
198 else if (strcmp (cpu_string, "z990") == 0)
200 else if (strcmp (cpu_string, "z9-109") == 0)
202 else if (strcmp (cpu_string, "z9-ec") == 0)
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dparse-name-test.c90 if (strcmp (t->realm, princ->realm) != 0) {
106 if (strcmp(t->comp_val[i],
133 if (strcmp (t->output_string, name_buf) != 0) {
144 if (strcmp (t->output_string, s) != 0) {
169 if (strcmp (t->input_string, name_buf) != 0) {
180 if (strcmp (t->input_string, s) != 0) {
/freebsd-11-stable/crypto/openssl/crypto/engine/
H A Deng_cnf.c127 if (!strcmp(ctrlname, "engine_id"))
129 else if (!strcmp(ctrlname, "soft_load"))
132 else if (!strcmp(ctrlname, "dynamic_path")) {
162 if (!strcmp(ctrlvalue, "EMPTY"))
164 if (!strcmp(ctrlname, "init")) {
175 } else if (!strcmp(ctrlname, "default_algorithms")) {
/freebsd-11-stable/usr.sbin/bsdinstall/partedit/
H A Dscripted.c55 if (strcmp(pp->lg_name, name) == 0)
88 if (strcmp(classp->lg_name, "PART") == 0)
92 if (strcmp(gpart->lg_name, disk) == 0)
99 if (strcmp(scheme, "PC98") == 0 || strcmp(scheme, "MBR") == 0) {
131 if (strcmp(size, "auto") == 0)
/freebsd-11-stable/usr.sbin/extattrctl/
H A Dextattrctl.c205 if (!strcmp(argv[1], "start")) {
214 } else if (!strcmp(argv[1], "stop")) {
223 } else if (!strcmp(argv[1], "enable")) {
237 } else if (!strcmp(argv[1], "disable")) {
251 } else if (!strcmp(argv[1], "initattr")) {
257 } else if (!strcmp(argv[1], "showattr")) {
/freebsd-11-stable/contrib/netbsd-tests/lib/librumpclient/
H A Dh_exec.c61 if (strcmp(argv[1], "_didexec") == 0) {
102 if (argc == 3 && strcmp(argv[2], "cloexec1") == 0) {
110 if (argc == 3 && strcmp(argv[2], "vfork_please") == 0) {
/freebsd-11-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dh_locking.c142 if (strcmp(argv[1], "dl_iterate_phdr") == 0)
144 if (strcmp(argv[1], "dlopen") == 0)
146 if (strcmp(argv[1], "dlclose") == 0)
/freebsd-11-stable/sys/riscv/riscv/
H A Ddb_disasm.c284 if (strcmp(type, "I") == 0) {
290 } else if (strcmp(type, "S") == 0) {
297 } else if (strcmp(type, "U") == 0) {
301 } else if (strcmp(type, "UJ") == 0) {
310 } else if (strcmp(type, "SB") == 0) {
402 if (strcmp(op->type, "U") == 0) {
406 if (strcmp(op->type, "UJ") == 0) {
410 if ((strcmp(op->type, "I") == 0) && \
425 if ((strcmp(op->type, "S") == 0) && \
431 if ((strcmp(o
[all...]
/freebsd-11-stable/crypto/openssl/crypto/rc4/
H A Drc4.c87 if (strcmp(*argv, "-in") == 0) {
91 } else if (strcmp(*argv, "-out") == 0) {
95 } else if (strcmp(*argv, "-key") == 0) {
/freebsd-11-stable/usr.sbin/rtprio/
H A Drtprio.c63 if (strcmp(progname, "rtprio") == 0)
65 else if (strcmp(progname, "idprio") == 0)
97 if (strcmp(argv[1], "-t") == 0) {
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_basedirname.c124 strcmp(test_basename_table[i].input, testbuf) != 0) {
132 if (strcmp(test_basename_table[i].output, base) != 0) {
175 strcmp(test_dirname_table[i].input, testbuf) != 0) {
183 if (strcmp(test_dirname_table[i].output, base) != 0) {
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_stresep.c39 if ((p = stresep(&q, " ", '\\')) == NULL || strcmp(p, a)) { \
/freebsd-11-stable/contrib/netbsd-tests/lib/librumphijack/
H A Dh_client.c50 if (strcmp(argv[1], "select_timeout") == 0) {
73 } else if (strcmp(argv[1], "select_allunset") == 0) {
96 } else if (strcmp(argv[1], "invafd") == 0) {
117 } else if (strcmp(argv[1], "fdoff8") == 0) {

Completed in 180 milliseconds

1234567891011>>