| /netbsd-src/external/bsd/am-utils/dist/amd/ |
| H A D | conf.c | 291 if (STREQ(section, "global")) { in set_conf_kv() 329 if (cur_map->cfm_dir && !STREQ(cur_map->cfm_dir, section)) { in set_conf_kv() 417 if (STREQ(val, "yes")) { in gopt_autofs_use_lofs() 420 } else if (STREQ(val, "no")) { in gopt_autofs_use_lofs() 433 if (STREQ(val, "full")) { in gopt_browsable_dirs() 436 } else if (STREQ(val, "yes")) { in gopt_browsable_dirs() 439 } else if (STREQ(val, "no")) { in gopt_browsable_dirs() 502 if (STREQ(val, "yes")) { in gopt_domain_strip() 505 } else if (STREQ(val, "no")) { in gopt_domain_strip() 528 if (STREQ(val, "yes")) { in gopt_forced_unmounts() [all …]
|
| H A D | am_ops.c | 295 if (STREQ(opt, "ro")) return "rw"; in reverse_option() 296 if (STREQ(opt, "rw")) return "ro"; in reverse_option() 297 if (STREQ(opt, "bg")) return "fg"; in reverse_option() 298 if (STREQ(opt, "fg")) return "bg"; in reverse_option() 299 if (STREQ(opt, "soft")) return "hard"; in reverse_option() 300 if (STREQ(opt, "hard")) return "soft"; in reverse_option() 379 if (STREQ(rop->fs_type, type)) in ops_search() 432 if (STREQ(fo->opt_opts, fo->opt_remopts)) { in ops_match()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/local/ |
| H A D | local_expand.c | 120 #define STREQ(x,y) (*(x) == *(y) && strcmp((x), (y)) == 0) in local_expand_lookup() macro 122 if (STREQ(name, "user")) { in local_expand_lookup() 124 } else if (STREQ(name, "home")) { in local_expand_lookup() 126 } else if (STREQ(name, "shell")) { in local_expand_lookup() 128 } else if (STREQ(name, "domain")) { in local_expand_lookup() 130 } else if (STREQ(name, "local")) { in local_expand_lookup() 132 } else if (STREQ(name, "mailbox")) { in local_expand_lookup() 134 } else if (STREQ(name, "recipient")) { in local_expand_lookup() 136 } else if (STREQ(name, "extension")) { in local_expand_lookup() 140 } else if (STREQ(name, "recipient_delimiter")) { in local_expand_lookup() [all …]
|
| H A D | unknown.c | 89 #define STREQ(x,y) (strcasecmp((x),(y)) == 0) macro 158 if (STREQ(vstring_str(canon_luser), state.msg_attr.rcpt.address)) { in deliver_unknown() 175 if (STREQ(state.msg_attr.user, MAIL_ADDR_MAIL_DAEMON) in deliver_unknown() 176 || STREQ(state.msg_attr.user, MAIL_ADDR_POSTMASTER)) { in deliver_unknown()
|
| /netbsd-src/external/gpl2/gmake/dist/glob/ |
| H A D | fnmatch.c | 89 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0)) macro 111 (STREQ (string, "alpha") || STREQ (string, "upper") \ 112 || STREQ (string, "lower") || STREQ (string, "digit") \ 113 || STREQ (string, "alnum") || STREQ (string, "xdigit") \ 114 || STREQ (string, "space") || STREQ (string, "print") \ 115 || STREQ (string, "punct") || STREQ (string, "graph") \ 116 || STREQ (string, "cntrl") || STREQ (string, "blank")) 376 if ((STREQ (str, "alnum") && ISALNUM ((unsigned char) *n)) 377 || (STREQ (str, "alpha") && ISALPHA ((unsigned char) *n)) 378 || (STREQ (str, "blank") && ISBLANK ((unsigned char) *n)) [all …]
|
| /netbsd-src/external/ibm-public/postfix/dist/src/global/ |
| H A D | bounce_log.c | 127 #define STREQ(x,y) (strcmp((x),(y)) == 0) in bounce_log_open() macro 141 if (STREQ(queue_name, MAIL_QUEUE_DEFER)) { in bounce_log_open() 228 if (STREQ(name, MAIL_ATTR_RECIP)) { in bounce_log_read() 231 } else if (STREQ(name, MAIL_ATTR_ORCPT)) { in bounce_log_read() 234 } else if (STREQ(name, MAIL_ATTR_DSN_ORCPT)) { in bounce_log_read() 236 } else if (STREQ(name, MAIL_ATTR_DSN_NOTIFY)) { in bounce_log_read() 239 } else if (STREQ(name, MAIL_ATTR_OFFSET)) { in bounce_log_read() 242 } else if (STREQ(name, MAIL_ATTR_DSN_STATUS)) { in bounce_log_read() 244 } else if (STREQ(name, MAIL_ATTR_DSN_ACTION)) { in bounce_log_read() 246 } else if (STREQ(name, MAIL_ATTR_DSN_DTYPE)) { in bounce_log_read() [all …]
|
| H A D | server_acl.c | 129 #define STREQ(x,y) (strcasecmp((x), (y)) == 0) in server_acl_parse() macro 180 if (STREQ(acl, SERVER_ACL_NAME_REJECT)) { in server_acl_eval() 182 } else if (STREQ(acl, SERVER_ACL_NAME_PERMIT)) { in server_acl_eval() 184 } else if (STREQ(acl, SERVER_ACL_NAME_WL_MYNETWORKS)) { in server_acl_eval() 221 } else if (STREQ(acl, SERVER_ACL_NAME_DUNNO)) { in server_acl_eval() 283 if ((cmd = mystrtok(&bufp, " =")) == 0 || STREQ(cmd, "?")) { in main() 288 } else if (STREQ(cmd, VAR_MYNETWORKS)) { in main() 290 } else if (STREQ(cmd, VAR_SERVER_ACL)) { in main() 292 } else if (STREQ(cmd, "address")) { in main()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/smtpd/ |
| H A D | smtpd_expand.c | 137 #define STREQ(x,y) (*(x) == *(y) && strcmp((x), (y)) == 0) in smtpd_expand_addr() macro 139 else if (STREQ(suffix, MAIL_ATTR_S_NAME)) { in smtpd_expand_addr() 154 else if (STREQ(suffix, MAIL_ATTR_S_DOMAIN)) { in smtpd_expand_addr() 205 if (STREQ(name, MAIL_ATTR_SERVER_NAME)) { in smtpd_expand_lookup() 207 } else if (STREQ(name, MAIL_ATTR_ACT_CLIENT)) { in smtpd_expand_lookup() 209 } else if (STREQ(name, MAIL_ATTR_ACT_CLIENT_PORT)) { in smtpd_expand_lookup() 211 } else if (STREQ(name, MAIL_ATTR_ACT_CLIENT_ADDR)) { in smtpd_expand_lookup() 213 } else if (STREQ(name, MAIL_ATTR_ACT_CLIENT_NAME)) { in smtpd_expand_lookup() 215 } else if (STREQ(name, MAIL_ATTR_ACT_REVERSE_CLIENT_NAME)) { in smtpd_expand_lookup() 217 } else if (STREQ(name, MAIL_ATTR_ACT_HELO_NAME)) { in smtpd_expand_lookup() [all …]
|
| /netbsd-src/external/bsd/am-utils/dist/conf/mount/ |
| H A D | mount_svr4.c | 87 if (STREQ(type, MOUNT_TYPE_NFS3)) { in mount_svr4() 94 if (STREQ(type, MOUNT_TYPE_NFS)) { in mount_svr4() 101 if (STREQ(type, MOUNT_TYPE_AUTOFS)) { in mount_svr4() 108 if (STREQ(type, MOUNT_TYPE_UFS)) in mount_svr4() 114 if (STREQ(type, MOUNT_TYPE_PCFS)) in mount_svr4() 132 if (STREQ(type, MOUNT_TYPE_CDFS)) in mount_svr4() 138 if (STREQ(type, MOUNT_TYPE_LOFS)) in mount_svr4() 145 if (STREQ(type, MOUNT_TYPE_CACHEFS)) in mount_svr4() 153 if (STREQ(type, MOUNT_TYPE_AUTOFS)) in mount_svr4()
|
| H A D | mount_irix6.c | 66 if (STREQ(type, MOUNT_TYPE_NFS3)) in mount_irix() 72 if (STREQ(type, MOUNT_TYPE_NFS)) in mount_irix() 78 if (STREQ(type, MOUNT_TYPE_UFS)) in mount_irix() 84 if (STREQ(type, MOUNT_TYPE_XFS)) in mount_irix() 90 if (STREQ(type, MOUNT_TYPE_EFS)) in mount_irix() 96 if (STREQ(type, MOUNT_TYPE_AUTOFS)) in mount_irix() 102 if (STREQ(type, MOUNT_TYPE_LOFS)) in mount_irix()
|
| H A D | mount_irix5.c | 71 if (STREQ(type, MOUNT_TYPE_NFS3)) in mount_irix() 77 if (STREQ(type, MOUNT_TYPE_NFS)) in mount_irix() 85 if (STREQ(type, MOUNT_TYPE_UFS)) in mount_irix() 90 if (STREQ(type, MOUNT_TYPE_EFS)) in mount_irix() 95 if (STREQ(type, MOUNT_TYPE_XFS)) in mount_irix()
|
| H A D | mount_hpux.c | 64 if (STREQ(type, MOUNT_TYPE_NFS)) in mount_hpux() 69 if (STREQ(type, MOUNT_TYPE_UFS)) in mount_hpux() 78 if (STREQ(type, MOUNT_TYPE_PCFS)) in mount_hpux() 83 if (STREQ(type, MOUNT_TYPE_CDFS)) in mount_hpux()
|
| H A D | mount_linux.c | 325 if (!(*noauto = STREQ(opt, MNTTAB_OPT_NOAUTO)) || std_opts->opt) { in parse_opts() 338 if (STREQ(type, MOUNT_TYPE_AUTOFS)) { in parse_opts() 344 if (STREQ(type, MOUNT_TYPE_PCFS)) { in parse_opts() 350 if (STREQ(type, MOUNT_TYPE_CDFS)) { in parse_opts() 356 if (STREQ(type, MOUNT_TYPE_LOFS)) { in parse_opts() 362 if (STREQ(type, MOUNT_TYPE_LUSTRE)) { in parse_opts() 368 if (STREQ(type, MOUNT_TYPE_EXT2)) { in parse_opts() 374 if (STREQ(type, MOUNT_TYPE_EXT3)) { in parse_opts() 380 if (STREQ(type, MOUNT_TYPE_EXT4)) { in parse_opts() 656 if (STREQ(type, MOUNT_TYPE_LOFS)) { in mount_linux_nonfs() [all …]
|
| /netbsd-src/external/bsd/am-utils/dist/libamu/ |
| H A D | xutil.c | 574 if (STREQ(last_msg, msg)) { in real_plog() 601 if (STREQ(last_msg, msg)) { in real_plog() 672 if (STREQ(opt, dp->opt)) in cmdoption() 674 if (opt != s && !dpn && STREQ(s, dp->opt)) in cmdoption() 754 if (STREQ(facstr, "kern")) in get_syslog_facility() 758 if (STREQ(facstr, "user")) in get_syslog_facility() 762 if (STREQ(facstr, "mail")) in get_syslog_facility() 766 if (STREQ(facstr, "daemon")) in get_syslog_facility() 770 if (STREQ(facstr, "auth")) in get_syslog_facility() 774 if (STREQ(facstr, "syslog")) in get_syslog_facility() [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| H A D | fnmatch.c | 93 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0)) macro 127 (STREQ (string, "alpha") || STREQ (string, "upper") \ 128 || STREQ (string, "lower") || STREQ (string, "digit") \ 129 || STREQ (string, "alnum") || STREQ (string, "xdigit") \ 130 || STREQ (string, "space") || STREQ (string, "print") \ 131 || STREQ (string, "punct") || STREQ (string, "graph") \ 132 || STREQ (string, "cntrl") || STREQ (string, "blank"))
|
| H A D | linebreak.c | 179 #define STREQ(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \ macro 184 #define STREQ(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \ macro 195 || STREQ (encoding, "EUC-JP", 'E', 'U', 'C', '-', 'J', 'P', 0, 0, 0) in is_cjk_encoding() 197 || STREQ (encoding, "GB2312", 'G', 'B', '2', '3', '1', '2', 0, 0, 0) in is_cjk_encoding() 198 || STREQ (encoding, "GBK", 'G', 'B', 'K', 0, 0, 0, 0, 0, 0) in is_cjk_encoding() 199 || STREQ (encoding, "EUC-TW", 'E', 'U', 'C', '-', 'T', 'W', 0, 0, 0) in is_cjk_encoding() 200 || STREQ (encoding, "BIG5", 'B', 'I', 'G', '5', 0, 0, 0, 0, 0) in is_cjk_encoding() 202 || STREQ (encoding, "EUC-KR", 'E', 'U', 'C', '-', 'K', 'R', 0, 0, 0) in is_cjk_encoding() 203 || STREQ (encoding, "CP949", 'C', 'P', '9', '4', '9', 0, 0, 0, 0) in is_cjk_encoding() 204 || STREQ (encoding, "JOHAB", 'J', 'O', 'H', 'A', 'B', 0, 0, 0, 0)) in is_cjk_encoding() [all …]
|
| /netbsd-src/external/gpl2/xcvs/dist/lib/ |
| H A D | fnmatch.c | 120 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0)) macro 154 (STREQ (string, "alpha") || STREQ (string, "upper") \ 155 || STREQ (string, "lower") || STREQ (string, "digit") \ 156 || STREQ (string, "alnum") || STREQ (string, "xdigit") \ 157 || STREQ (string, "space") || STREQ (string, "print") \ 158 || STREQ (string, "punct") || STREQ (string, "graph") \ 159 || STREQ (string, "cntrl") || STREQ (string, "blank"))
|
| /netbsd-src/external/ibm-public/postfix/dist/src/postdrop/ |
| H A D | postdrop.c | 536 #define STREQ(x,y) (strcmp(x,y) == 0) in main() macro 538 if ((STREQ(attr_name, MAIL_ATTR_ENCODING) in main() 539 && (STREQ(attr_value, MAIL_ATTR_ENC_7BIT) in main() 540 || STREQ(attr_value, MAIL_ATTR_ENC_8BIT) in main() 541 || STREQ(attr_value, MAIL_ATTR_ENC_NONE))) in main() 542 || STREQ(attr_name, MAIL_ATTR_DSN_ENVID) in main() 543 || STREQ(attr_name, MAIL_ATTR_DSN_NOTIFY) in main() 545 || (STREQ(attr_name, MAIL_ATTR_RWR_CONTEXT) in main() 546 && (STREQ(attr_value, MAIL_ATTR_RWR_LOCAL) in main() 547 || STREQ(attr_value, MAIL_ATTR_RWR_REMOTE))) in main() [all …]
|
| /netbsd-src/external/ibm-public/postfix/dist/src/postscreen/ |
| H A D | postscreen_expand.c | 105 #define STREQ(x,y) (*(x) == *(y) && strcmp((x), (y)) == 0) in psc_expand_lookup() macro 122 if (STREQ(name, MAIL_ATTR_SERVER_NAME)) { in psc_expand_lookup() 124 } else if (STREQ(name, MAIL_ATTR_ACT_CLIENT_ADDR)) { in psc_expand_lookup() 126 } else if (STREQ(name, MAIL_ATTR_ACT_CLIENT_PORT)) { in psc_expand_lookup() 128 } if (STREQ(name, MAIL_ATTR_LOCALTIME)) { in psc_expand_lookup()
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| H A D | linebreak.c | 179 #define STREQ(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \ macro 184 #define STREQ(s1,s2,s20,s21,s22,s23,s24,s25,s26,s27,s28) \ macro 195 || STREQ (encoding, "EUC-JP", 'E', 'U', 'C', '-', 'J', 'P', 0, 0, 0) in is_cjk_encoding() 197 || STREQ (encoding, "GB2312", 'G', 'B', '2', '3', '1', '2', 0, 0, 0) in is_cjk_encoding() 198 || STREQ (encoding, "GBK", 'G', 'B', 'K', 0, 0, 0, 0, 0, 0) in is_cjk_encoding() 199 || STREQ (encoding, "EUC-TW", 'E', 'U', 'C', '-', 'T', 'W', 0, 0, 0) in is_cjk_encoding() 200 || STREQ (encoding, "BIG5", 'B', 'I', 'G', '5', 0, 0, 0, 0, 0) in is_cjk_encoding() 202 || STREQ (encoding, "EUC-KR", 'E', 'U', 'C', '-', 'K', 'R', 0, 0, 0) in is_cjk_encoding() 203 || STREQ (encoding, "CP949", 'C', 'P', '9', '4', '9', 0, 0, 0, 0) in is_cjk_encoding() 204 || STREQ (encoding, "JOHAB", 'J', 'O', 'H', 'A', 'B', 0, 0, 0, 0)) in is_cjk_encoding() [all …]
|
| /netbsd-src/external/bsd/am-utils/dist/conf/checkmount/ |
| H A D | checkmount_osf.c | 72 if ((STREQ(delim + 1, path) || in fixmount_check_mount() 73 STREQ(fslist[i].f_mntonname, path)) && in fixmount_check_mount() 79 if ((STREQ(fslist[i].f_mntfromname, path) || in fixmount_check_mount() 80 STREQ(fslist[i].f_mntonname, path)) && in fixmount_check_mount()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/flush/ |
| H A D | flush.c | 234 #define STREQ(x,y) (STRREF(x) == STRREF(y) || strcmp(x,y) == 0) macro 429 if (STREQ(queue_name, MAIL_QUEUE_INCOMING)) in flush_one_file() 459 if (errno != ENOENT || STREQ(queue_name, MAIL_QUEUE_INCOMING)) { in flush_one_file() 477 if (STREQ(queue_name, MAIL_QUEUE_INCOMING) == 0 in flush_one_file() 781 if (STREQ(STR(request), FLUSH_REQ_ADD)) { in flush_service() 793 } else if (STREQ(STR(request), FLUSH_REQ_SEND_SITE)) { in flush_service() 802 } else if (STREQ(STR(request), FLUSH_REQ_SEND_FILE)) { in flush_service() 811 } else if (STREQ(STR(request), FLUSH_REQ_REFRESH) in flush_service() 812 || STREQ(STR(request), wakeup)) { in flush_service() 818 } else if (STREQ(STR(request), FLUSH_REQ_PURGE)) { in flush_service()
|
| /netbsd-src/external/gpl3/gdb.old/dist/readline/readline/ |
| H A D | nls.c | 110 return (STREQ (cp, "UTF-8") || STREQ (cp, "utf8")); in utf8locale() 158 if (t && *t && (t[0] != 'C' || t[1]) && (STREQ (t, "POSIX") == 0)) in _rl_init_eightbit() 180 if (STREQ (t, legal_lang_values[i])) in _rl_init_eightbit() 188 _rl_utf8locale = *t ? STREQ (t, "utf8") : 0; in _rl_init_eightbit()
|
| /netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
| H A D | nls.c | 110 return (STREQ (cp, "UTF-8") || STREQ (cp, "utf8")); in utf8locale() 158 if (t && *t && (t[0] != 'C' || t[1]) && (STREQ (t, "POSIX") == 0)) in _rl_init_eightbit() 180 if (STREQ (t, legal_lang_values[i])) in _rl_init_eightbit() 188 _rl_utf8locale = *t ? STREQ (t, "utf8") : 0; in _rl_init_eightbit()
|
| /netbsd-src/external/gpl2/texinfo/dist/makeinfo/ |
| H A D | toc.c | 158 if (STREQ (node, toc_entry_alist[i]->containing_node)) in toc_find_section_of_node() 367 int elt = STREQ (command, "contents") ? CONTENTS : SHORTCONTENTS; in cm_contents() 374 register_delayed_write (STREQ (command, "contents") in cm_contents() 377 if (html && STREQ (command, "contents")) in cm_contents() 385 STREQ (command, "contents") in cm_contents() 388 STREQ (command, "contents") in cm_contents()
|