HomeSort by: relevance | last modified time | path
    Searched refs:why (Results 1 - 25 of 252) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/cddl/osnet/dist/common/zfs/
zfs_namecheck.c 35 * Each routine therefore takes a 'namecheck_err_t' which describes exactly why
68 zfs_component_namecheck(const char *path, namecheck_err_t *why, char *what)
73 if (why)
74 *why = NAME_ERR_TOOLONG;
79 if (why)
80 *why = NAME_ERR_EMPTY_COMPONENT;
86 if (why) {
87 *why = NAME_ERR_INVALCHAR;
103 permset_namecheck(const char *path, namecheck_err_t *why, char *what)
106 if (why)
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
deliver_flock.c 11 /* int deliver_flock(fd, lock_style, why)
14 /* VSTRING *why;
26 /* .IP why
69 int deliver_flock(int fd, int lock_style, VSTRING *why)
81 if (why)
82 vstring_sprintf(why, "unable to lock for exclusive access: %m");
dot_lockfile.c 11 /* int dot_lockfile(path, why)
13 /* VSTRING *why;
30 /* .IP why
31 /* A null pointer, or storage for the reason why a lock file could
82 int dot_lockfile(const char *path, VSTRING *why)
126 if (status && why)
127 vstring_sprintf(why, "unable to create lock file %s: %m", lock_file);
162 VSTRING *why = vstring_alloc(100); local
168 if (dot_lockfile(argv[1], why) < 0)
169 msg_fatal("%s", vstring_str(why));
    [all...]
reject_deliver_request.c 74 DSN_BUF *why; local
84 why = vdsb_simple(dsb_create(), code, format, ap);
86 (void) DSN_FROM_DSN_BUF(why);
87 if (strchr("45", vstring_str(why->status)[0]) == 0)
95 status = (vstring_str(why->status)[0] != '4' ?
100 service, &why->dsn);
105 dsb_free(why);
mbox_open.c 19 /* def_dsn, why)
28 /* DSN_BUF *why;
40 /* The \fBpath, flags, mode, st, user, group, why\fR arguments
110 DSN_BUF *why)
143 if (dot_lockfile(path, why->reason) == 0) {
146 dsb_status(why, mbox_dsn(EAGAIN, def_dsn));
149 msg_warn("%s", vstring_str(why->reason));
151 dsb_status(why, mbox_dsn(errno, def_dsn));
166 chown_uid, chown_gid, why->reason)) == 0) {
167 dsb_status(why, mbox_dsn(errno, def_dsn))
    [all...]
trace.c 117 VSTRING *why = vstring_alloc(100); local
126 vstring_sprintf(why, "delivery via %s: ", relay);
127 vstring_strcat(why, my_dsn.reason);
128 my_dsn.reason = vstring_str(why);
145 vstring_free(why);
dot_lockfile_as.c 11 /* int dot_lockfile_as(path, why, euid, egid)
13 /* VSTRING *why;
56 int dot_lockfile_as(const char *path, VSTRING *why, uid_t euid, gid_t egid)
70 result = dot_lockfile(path, why);
  /src/games/trek/
lose.c 74 lose(int why)
78 printf("\n%s\n", Losemsg[why - 1]);
79 switch (why) {
  /src/external/gpl3/gdb/dist/gdb/
proc-why.c 60 proc_prettyfprint_why (FILE *file, unsigned long why, unsigned long what,
65 if (why == 0)
69 if (why == pr_why_table[i].value)
75 switch (why) {
96 fprintf (file, "Unknown why %ld, what %ld\n", why, what);
108 proc_prettyprint_why (unsigned long why, unsigned long what, int verbose)
110 proc_prettyfprint_why (stdout, why, what, verbose);
  /src/external/gpl3/gdb.old/dist/gdb/
proc-why.c 60 proc_prettyfprint_why (FILE *file, unsigned long why, unsigned long what,
65 if (why == 0)
69 if (why == pr_why_table[i].value)
75 switch (why) {
96 fprintf (file, "Unknown why %ld, what %ld\n", why, what);
108 proc_prettyprint_why (unsigned long why, unsigned long what, int verbose)
110 proc_prettyfprint_why (stdout, why, what, verbose);
  /src/external/ibm-public/postfix/dist/src/util/
open_lock.c 11 /* VSTREAM *open_lock(path, flags, mode, why)
15 /* VSTRING *why;
24 /* .IP why
60 VSTREAM *open_lock(const char *path, int flags, mode_t mode, VSTRING *why)
69 if ((fp = safe_open(path, flags, mode, (struct stat *) 0, -1, -1, why)) == 0)
73 vstring_sprintf(why, "unable to set exclusive lock: %m");
safe_open.c 11 /* VSTREAM *safe_open(path, flags, mode, st, user, group, why)
18 /* VSTRING *why;
40 /* .IP why
95 struct stat * fstat_st, VSTRING *why)
107 vstring_sprintf(why, "cannot open file: %m");
122 vstring_sprintf(why, "file has %d hard links",
126 vstring_sprintf(why, "file is a directory");
152 vstring_sprintf(why, "file status changed unexpectedly: %m");
168 vstring_sprintf(why, "file is a symbolic link");
177 vstring_sprintf(why, "file status changed unexpectedly")
    [all...]
cidr_match.c 11 /* VSTRING *cidr_match_parse(info, pattern, match, why)
14 /* VSTRING *why;
20 /* VSTRING *cidr_match_parse_if(info, pattern, match, why)
23 /* VSTRING *why;
41 /* value of the why argument, or a newly allocated VSTRING
189 VSTRING *why)
207 vstring_sprintf(why ? why : (why = vstring_alloc(20)),
209 return (why);
    [all...]
dict_cidr.c 120 int nesting, VSTRING *why)
142 vstring_sprintf(why, "no address pattern");
146 if (cidr_match_parse_if(&cidr_info, p, match, why) != 0)
159 vstring_sprintf(why, "garbage after ENDIF");
163 vstring_sprintf(why, "ENDIF without IF");
201 vstring_sprintf(why, "no address pattern");
208 if (cidr_match_parse(&cidr_info, pattern, match, why) != 0)
212 vstring_sprintf(why, "no lookup result");
226 vstring_strcpy(why, err);
260 VSTRING *why = 0 local
    [all...]
logwriter.c 95 VSTRING *why = vstring_alloc(100); local
102 NO_STATP, NO_CHOWN, NO_CHGRP, why);
104 msg_fatal("open logfile '%s': %s", path, vstring_str(why));
106 vstring_free(why);
  /src/external/ibm-public/postfix/dist/src/smtp/
smtp_trouble.c 79 /* record why the host is being skipped; soft error, final server:
89 /* record why the host is being skipped; soft error, final server:
105 /* record why the recipient is being skipped; soft error, final server:
115 /* with the reason why the host is being skipped; final server:
132 /* Human-readable description of why mail is not deliverable.
219 DSN_BUF *why = state->why; local
223 int soft_error = (STR(why->status)[0] == '4');
224 int soft_bounce_error = (STR(why->status)[0] == '5' && var_soft_bounce);
230 * why we're skipping this host
316 DSN_BUF *why = state->why; local
375 DSN_BUF *why = state->why; local
436 DSN_BUF *why = state->why; local
    [all...]
smtp_addr.c 11 /* DNS_RR *smtp_domain_addr(name, mxrr, misc_flags, why, found_myself)
15 /* DSN_BUF *why;
18 /* DNS_RR *smtp_host_addr(name, misc_flags, why)
21 /* DSN_BUF *why;
23 /* DNS_RR *smtp_service_addr(name, service, mxrr, misc_flags, why,
29 /* DSN_BUF *why;
161 DSN_BUF *why)
204 why->reason, DNS_REQ_FLAG_NONE,
214 dsb_status(why, "4.4.3");
217 dsb_status(why, SMTP_HAS_SOFT_DSN(why) ? "4.4.3" : "5.4.3")
    [all...]
smtp_sasl_proto.c 125 DSN_BUF *why = state->why; local
146 dsb_simple(why, "4.7.0", "SASL authentication failed: "
165 if (smtp_sasl_authenticate(session, why) <= 0) {
  /src/external/ibm-public/postfix/dist/src/local/
file.c 89 DSN_BUF *why = state.msg_attr.why; local
115 dsb_simple(why, "5.7.1", "mail to file is restricted");
124 dsb_simple(why, "2.0.0", "delivers to file: %s", path);
166 "5.2.0", why);
170 dsb_simple(why, "5.7.1", "file is executable");
175 "\n", why);
187 vstring_sprintf_prepend(why->reason,
192 dsb_simple(why, "2.0.0", "delivered to file: %s", path);
maildir.c 88 DSN_BUF *why = state.msg_attr.why; local
110 dsb_simple(why, "2.0.0", "delivers to maildir");
194 dsb_simple(why, mbox_dsn(errno, "5.2.0"),
214 why)) == 0) {
219 dsb_simple(why, mbox_dsn(errno, "5.2.0"),
238 STR(why->reason));
241 vstring_sprintf_prepend(why->reason, "maildir delivery failed: ");
243 (STR(why->status)[0] == '4' ?
247 dsb_simple(why, "2.0.0", "delivered to maildir")
    [all...]
  /src/external/ibm-public/postfix/dist/src/dns/
dns_rr_to_pa.c 89 VSTRING *why; local
95 why = vstring_alloc(1);
102 if (dns_lookup(argv[1], type, 0, &rr, (VSTRING *) 0, why) != DNS_OK)
103 msg_fatal("%s: %s", argv[1], vstring_str(why));
111 vstring_free(why);
dns_sec.c 88 VSTRING *why; local
121 why = vstring_alloc(100);
122 dns_status = dns_lookup(qname, qtype, rflags, &rrlist, (VSTRING *) 0, why);
141 var_dnssec_probe, vstring_str(why));
145 vstring_free(why);
  /src/external/ibm-public/postfix/dist/src/virtual/
mailbox.c 85 DSN_BUF *why = state.msg_attr.why; local
103 dsb_simple(why, "2.0.0", "delivers to mailbox");
127 virtual_mbox_lock_mask, "4.2.0", why);
133 dsb_simple(why, "5.3.5", "mail system configuration error");
136 dsb_simple(why, "4.2.0",
145 copy_flags, "\n", why);
157 vstring_sprintf_prepend(why->reason, "delivery failed to mailbox %s: ",
160 (STR(why->status)[0] == '4' ?
165 dsb_simple(why, "2.0.0", "delivered to mailbox")
180 DSN_BUF *why = state.msg_attr.why; local
    [all...]
unknown.c 63 dsb_simple(state.msg_attr.why, "5.1.1",
maildir.c 83 DSN_BUF *why = state.msg_attr.why; local
105 dsb_simple(why, "2.0.0", "delivers to maildir");
188 dsb_simple(why, mbox_dsn(errno, "4.2.0"),
208 why)) == 0) {
213 dsb_simple(why, mbox_dsn(errno, "4.2.0"),
234 STR(why->reason));
237 vstring_sprintf_prepend(why->reason, "maildir delivery failed: ");
239 (STR(why->status)[0] == '4' ?
244 dsb_simple(why, "2.0.0", "delivered to maildir")
    [all...]

Completed in 96 milliseconds

1 2 3 4 5 6 7 8 91011