Searched refs:why (Results 1 - 25 of 228) sorted by relevance

12345678910

/macosx-10.9.5/dcerpc-58/dcerpc/demos/access/
H A Dmisc.h5 char * why,
H A Dmisc.c16 char * why,
27 printf("ERROR. where = <%s> why = <%s> error code = 0x%lx"
29 where, why, ecode, errstr);
31 printf("ERROR. where = <%s> why = <%s> error code = 0x%lx\n",
32 where, why, ecode);
13 chk_dce_err( error_status_t ecode, char * where, char * why, unsigned int fatal ) argument
/macosx-10.9.5/dcerpc-58/dcerpc/demos/echo_server/
H A Dmisc.h5 const char * why,
H A Dmisc.c17 const char * why,
27 printf("ERROR. where = <%s> why = <%s> error code = 0x%x "
29 where, why, ecode, errstr);
31 printf("ERROR. where = <%s> why = <%s> error code = 0x%x\n",
32 where, why, ecode);
14 chk_dce_err( error_status_t ecode, const char * where, const char * why, unsigned int fatal) argument
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/sample/
H A Dcommon.h48 extern void saslerr(int why, const char *what);
49 extern void saslfail(int why, const char *what);
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddeliver_flock.c9 /* int deliver_flock(fd, lock_style, why)
12 /* VSTRING *why;
24 /* .IP why
67 int deliver_flock(int fd, int lock_style, VSTRING *why) argument
79 if (why)
80 vstring_sprintf(why, "unable to lock for exclusive access: %m");
H A Ddot_lockfile.c9 /* int dot_lockfile(path, why)
11 /* VSTRING *why;
28 /* .IP why
29 /* A null pointer, or storage for the reason why a lock file could
80 int dot_lockfile(const char *path, VSTRING *why) argument
124 if (status && why)
125 vstring_sprintf(why, "unable to create lock file %s: %m", lock_file);
160 VSTRING *why = vstring_alloc(100); local
166 if (dot_lockfile(argv[1], why) < 0)
167 msg_fatal("%s", vstring_str(why));
[all...]
H A Dmbox_open.c17 /* def_dsn, why)
26 /* DSN_BUF *why;
38 /* The \fBpath, flags, mode, st, user, group, why\fR arguments
108 DSN_BUF *why)
141 if (dot_lockfile(path, why->reason) == 0) {
144 dsb_status(why, mbox_dsn(EAGAIN, def_dsn));
147 msg_warn("%s", vstring_str(why->reason));
149 dsb_status(why, mbox_dsn(errno, def_dsn));
164 chown_uid, chown_gid, why->reason)) == 0) {
165 dsb_status(why, mbox_ds
105 mbox_open(const char *path, int flags, mode_t mode, struct stat * st, uid_t chown_uid, gid_t chown_gid, int lock_style, const char *def_dsn, DSN_BUF *why) argument
[all...]
H A Dtrace.c110 VSTRING *why = vstring_alloc(100); local
119 vstring_sprintf(why, "delivery via %s: ", relay);
120 vstring_strcat(why, my_dsn.reason);
121 my_dsn.reason = vstring_str(why);
137 vstring_free(why);
H A Ddot_lockfile_as.c9 /* int dot_lockfile_as(path, why, euid, egid)
11 /* VSTRING *why;
54 int dot_lockfile_as(const char *path, VSTRING *why, uid_t euid, gid_t egid) argument
68 result = dot_lockfile(path, why);
/macosx-10.9.5/dcerpc-58/dcerpc/demos/echo_number/
H A Dmisc.c12 chk_dce_err(ecode, where, why, fatal)
15 const char * why;
26 printf("ERROR. where = <%s> why = <%s> error code = 0x%x"
28 where, why, ecode, errstr);
30 printf("ERROR. where = <%s> why = <%s> error code = 0x%x\n",
31 where, why, ecode);
/macosx-10.9.5/dcerpc-58/dcerpc/demos/samr_test/
H A Dmisc.c12 chk_dce_err(ecode, where, why, fatal)
15 const char * why;
26 printf("ERROR. where = <%s> why = <%s> error code = 0x%x"
28 where, why, (unsigned32)ecode, errstr);
30 printf("ERROR. where = <%s> why = <%s> error code = 0x%x\n",
31 where, why, (unsigned32)ecode);
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dcidr_match.c9 /* VSTRING *cidr_match_parse(info, pattern, why)
12 /* VSTRING *why;
28 /* value of the why argument, or a newly allocated VSTRING
135 VSTRING *cidr_match_parse(CIDR_MATCH *ip, char *pattern, VSTRING *why) argument
153 vstring_sprintf(why ? why : (why = vstring_alloc(20)),
155 return (why);
158 vstring_sprintf(why ? why
[all...]
H A Dopen_lock.c9 /* VSTREAM *open_lock(path, flags, mode, why)
13 /* VSTRING *why;
22 /* .IP why
58 VSTREAM *open_lock(const char *path, int flags, mode_t mode, VSTRING *why) argument
67 if ((fp = safe_open(path, flags, mode, (struct stat *) 0, -1, -1, why)) == 0)
71 vstring_sprintf(why, "unable to set exclusive lock: %m");
H A Dsafe_open.c9 /* VSTREAM *safe_open(path, flags, mode, st, user, group, why)
16 /* VSTRING *why;
38 /* .IP why
93 struct stat * fstat_st, VSTRING *why)
105 vstring_sprintf(why, "cannot open file: %m");
120 vstring_sprintf(why, "file has %d hard links",
124 vstring_sprintf(why, "file is a directory");
150 vstring_sprintf(why, "file status changed unexpectedly: %m");
166 vstring_sprintf(why, "file is a symbolic link");
175 vstring_sprintf(why, "fil
92 safe_open_exist(const char *path, int flags, struct stat * fstat_st, VSTRING *why) argument
195 safe_open_create(const char *path, int flags, mode_t mode, struct stat * st, uid_t user, gid_t group, VSTRING *why) argument
243 safe_open(const char *path, int flags, mode_t mode, struct stat * st, uid_t user, gid_t group, VSTRING *why) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/smtp/
H A Dsmtp_addr.c9 /* DNS_RR *smtp_domain_addr(name, misc_flags, why, found_myself)
12 /* DSN_BUF *why;
15 /* DNS_RR *smtp_host_addr(name, misc_flags, why)
18 /* DSN_BUF *why;
124 unsigned pref, DSN_BUF *why)
159 why->reason, DNS_REQ_FLAG_NONE,
167 dsb_status(why, "4.4.3");
170 dsb_status(why, SMTP_HAS_SOFT_DSN(why) ? "4.4.3" : "5.4.3");
173 dsb_status(why, SMTP_HAS_SOFT_DS
123 smtp_addr_one(DNS_RR *addr_list, const char *host, unsigned pref, DSN_BUF *why) argument
235 smtp_addr_list(DNS_RR *mx_names, DSN_BUF *why) argument
339 smtp_domain_addr(char *name, int misc_flags, DSN_BUF *why, int *found_myself) argument
477 smtp_host_addr(const char *host, int misc_flags, DSN_BUF *why) argument
[all...]
H A Dsmtp_trouble.c70 /* record why the host is being skipped; soft error, final server:
80 /* record why the host is being skipped; soft error, final server:
89 /* record why the recipient is being skipped; soft error, final server:
99 /* with the reason why the host is being skipped; final server:
112 /* Human-readable description of why mail is not deliverable.
189 DSN_BUF *why = state->why; local
192 int soft_error = (STR(why->status)[0] == '4');
198 * why we're skipping this host.
201 msg_info("%s: %s", request->queue_id, STR(why
280 DSN_BUF *why = state->why; local
354 DSN_BUF *why = state->why; local
412 DSN_BUF *why = state->why; local
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/demos/echo_union/
H A Dmisc.c14 chk_dce_err(ecode, where, why, fatal)
17 const char * why;
28 printf("ERROR. where = <%s> why = <%s> error code = 0x%x"
30 where, why, ecode, errstr);
32 printf("ERROR. where = <%s> why = <%s> error code = 0x%x\n",
33 where, why, ecode);
/macosx-10.9.5/postfix-252/postfix/src/local/
H A Dfile.c87 DSN_BUF *why = state.msg_attr.why; local
113 dsb_simple(why, "5.7.1", "mail to file is restricted");
122 dsb_simple(why, "2.0.0", "delivers to file: %s", path);
164 "5.2.0", why);
168 dsb_simple(why, "5.7.1", "file is executable");
173 "\n", why);
185 vstring_sprintf_prepend(why->reason,
187 if (STR(why->status)[0] == '4')
195 dsb_simple(why, "2.
[all...]
H A Dmaildir.c86 DSN_BUF *why = state.msg_attr.why; local
108 dsb_simple(why, "2.0.0", "delivers to maildir");
192 dsb_simple(why, mbox_dsn(errno, "5.2.0"),
212 why)) == 0) {
217 dsb_simple(why, mbox_dsn(errno, "5.2.0"),
236 STR(why->reason));
239 vstring_sprintf_prepend(why->reason, "maildir delivery failed: ");
241 (STR(why->status)[0] == '4' ?
245 dsb_simple(why, "2.
[all...]
/macosx-10.9.5/postfix-252/postfix/src/dns/
H A Ddns_rr_to_pa.c87 VSTRING *why; local
93 why = vstring_alloc(1);
100 if (dns_lookup(argv[1], type, 0, &rr, (VSTRING *) 0, why) != DNS_OK)
101 msg_fatal("%s: %s", argv[1], vstring_str(why));
109 vstring_free(why);
/macosx-10.9.5/postfix-252/postfix/src/virtual/
H A Dmailbox.c78 DSN_BUF *why = state.msg_attr.why; local
97 dsb_simple(why, "2.0.0", "delivers to mailbox");
121 virtual_mbox_lock_mask, "4.2.0", why);
127 dsb_simple(why, "5.3.5", "mail system configuration error");
130 dsb_simple(why, "4.2.0",
137 copy_flags, "\n", why);
149 vstring_sprintf_prepend(why->reason, "delivery failed to mailbox %s: ",
152 (STR(why->status)[0] == '4' ?
157 dsb_simple(why, "2.
172 DSN_BUF *why = state.msg_attr.why; local
[all...]
H A Dunknown.c61 dsb_simple(state.msg_attr.why, "5.1.1",
H A Dmaildir.c81 DSN_BUF *why = state.msg_attr.why; local
103 dsb_simple(why, "2.0.0", "delivers to maildir");
186 dsb_simple(why, mbox_dsn(errno, "4.2.0"),
206 why)) == 0) {
211 dsb_simple(why, mbox_dsn(errno, "4.2.0"),
232 STR(why->reason));
235 vstring_sprintf_prepend(why->reason, "maildir delivery failed: ");
237 (STR(why->status)[0] == '4' ?
242 dsb_simple(why, "2.
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/random/YarrowCoreLib/src/
H A DmacOnly.h45 #error Hey, why are you including macOnly for a non-Mac build!?

Completed in 168 milliseconds

12345678910