Searched refs:errp (Results 26 - 48 of 48) sorted by relevance

12

/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DTrust.cpp614 const CSSM_RETURN *errp=recoverableErrors; local
615 for(unsigned dex=0; dex<NUM_RECOVERABLE_ERRORS; dex++, errp++) {
616 if(*errp == mTpReturn) {
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DTrust.cpp614 const CSSM_RETURN *errp=recoverableErrors; local
615 for(unsigned dex=0; dex<NUM_RECOVERABLE_ERRORS; dex++, errp++) {
616 if(*errp == mTpReturn) {
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DTrust.cpp614 const CSSM_RETURN *errp=recoverableErrors; local
615 for(unsigned dex=0; dex<NUM_RECOVERABLE_ERRORS; dex++, errp++) {
616 if(*errp == mTpReturn) {
/macosx-10.10.1/apache-793/httpd/modules/proxy/
H A Dmod_proxy_ajp.c133 char *errp; local
134 if (apr_strtoff(&len, clp, &errp, 10) || *errp || len < 0) {
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dfiles.c658 static unsigned long getnumeric(char *p, int *errp) argument
663 *errp = 1;
667 *errp = !!*p;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldaptcl/
H A DneoXldap.c126 char *errp; local
134 errp = shortbuf;
136 errp = ldaptclerrorcode[code];
138 Tcl_SetErrorCode(interp, errp, NULL);
/macosx-10.10.1/screen-22/screen/
H A Dacls.c1008 AclUmask(u, str, errp)
1011 char **errp;
1023 *errp = "Bad argument. Should be ``[user[,user...]{+|-}rwxn''.";
1043 *errp = "UsersAcl failed. Hmmm.";
/macosx-10.10.1/remote_cmds-47/telnet.tproj/
H A Dtelnet.c682 setupterm(char *tname, int fd, int *errp)
686 if (errp)
687 *errp = 1;
690 if (errp)
691 *errp = 0;
679 setupterm(char *tname, int fd, int *errp) argument
/macosx-10.10.1/vim-55/src/proto/
H A Deval.pro35 void *eval_for_line __ARGS((char_u *arg, int *errp, char_u **nextcmdp, int skip));
/macosx-10.10.1/autofs-246/autofs_kext/
H A Dauto_subr.c497 autofs_trigger_get_mount_args(__unused vnode_t vp, vfs_context_t ctx, int *errp) argument
513 *errp = 0;
705 __unused vfs_context_t ctx, int *errp)
714 *errp = 0;
704 autofs_subtrigger_get_mount_args(__unused vnode_t vp, __unused vfs_context_t ctx, int *errp) argument
/macosx-10.10.1/dtrace-147/libctf/
H A Dctf_create.c50 ctf_create(int *errp) argument
60 return (ctf_set_open_errno(errp, EAGAIN));
70 if ((fp = ctf_bufopen(&cts, NULL, NULL, errp)) == NULL) {
/macosx-10.10.1/libresolv-57/
H A Dnameser.h547 u_int32_t ns_datetosecs __P((const char *cp, int *errp));
/macosx-10.10.1/apache-793/httpd/modules/dav/main/
H A Dmod_dav.c769 char *errp; local
786 if (apr_strtoff(range_start, range + 6, &errp, 10)
787 || *errp || *range_start < 0) {
790 if (apr_strtoff(range_end, dash, &errp, 10)
791 || *errp || *range_end < 0 || *range_end < *range_start) {
798 if (apr_strtoff(&dummy, slash, &errp, 10)
799 || *errp || dummy <= *range_end) {
/macosx-10.10.1/apache-793/httpd/modules/cache/
H A Dmod_cache.c1235 char *errp; local
1236 if (apr_strtoff(&size, cl, &errp, 10) || *errp || size < 0) {
/macosx-10.10.1/apache-793/httpd/modules/mappers/
H A Dmod_negotiation.c996 char *errp; local
1000 if (apr_strtoff(&number, body1, &errp, 10) != APR_SUCCESS
1001 || *errp || number < 0) {
/macosx-10.10.1/smb-759.0/kernel/smbfs/
H A Dsmbfs_node.c159 int *errp)
202 *errp = error;
226 *errp = error;
236 *errp = 0;
158 smbfs_trigger_get_mount_args(vnode_t vp, __unused vfs_context_t ctx, int *errp) argument
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dkauth.h289 extern int cantrace(proc_t cur_procp, kauth_cred_t creds, proc_t traced_procp, int *errp);
/macosx-10.10.1/xnu-2782.1.97/bsd/nfs/
H A Dnfs_subs.c4079 short *defaulterrp, *errp; local
4089 errp = defaulterrp = nfsrv_v3errmap[nd->nd_procnum];
4090 while (*++errp) {
4091 if (*errp == err)
4093 else if (*errp > err)
/macosx-10.10.1/xnu-2782.1.97/bsd/netkey/
H A Dkey.c3589 int *errp,
3608 *errp = ENOBUFS;
3633 *errp = EINVAL;
3642 *errp = EINVAL;
3657 *errp = key_setsaval(newsav, m, mhp);
3658 if (*errp) {
3680 *errp = ENOBUFS;
3697 *errp = EINVAL;
3704 *errp = ENOBUFS;
3585 key_newsav( struct mbuf *m, const struct sadb_msghdr *mhp, struct secashead *sah, int *errp, struct socket *so) argument
/macosx-10.10.1/apache-793/httpd/server/
H A Dcore.c3324 char *errp; local
3326 if (APR_SUCCESS != apr_strtoff(&conf->limit_req_body, arg, &errp, 10)) {
3329 if (*errp || conf->limit_req_body < 0) {
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace.c11562 dtrace_dof_copyin(user_addr_t uarg, int *errp) argument
11573 *errp = EFAULT;
11583 *errp = E2BIG;
11589 *errp = EINVAL;
11598 *errp = EFAULT;
11606 dtrace_dof_copyin_from_proc(proc_t* p, user_addr_t uarg, int *errp) argument
11617 *errp = EFAULT;
11627 *errp = E2BIG;
11633 *errp = EINVAL;
11641 *errp
[all...]
/macosx-10.10.1/ruby-106/ruby/
H A Dprocess.c3271 recv_child_error(int fd, int *statep, VALUE *excp, int *errp, char *errmsg, size_t errmsg_buflen, int chfunc_is_async_signal_safe) argument
3291 *errp = err;
/macosx-10.10.1/vim-55/src/
H A Deval.c3105 * Set "*errp" to TRUE for an error, FALSE otherwise;
3109 eval_for_line(arg, errp, nextcmdp, skip)
3111 int *errp;
3120 *errp = TRUE; /* default: there is an error */
3141 *errp = FALSE;

Completed in 511 milliseconds

12