Searched refs:op (Results 26 - 50 of 1676) sorted by relevance

1234567891011>>

/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-sock/
H A Dcompare.c34 Operation *op,
37 struct sockinfo *si = (struct sockinfo *) op->o_bd->be_private;
44 e.e_name = op->o_req_dn;
45 e.e_nname = op->o_req_ndn;
52 if ( ! access_allowed( op, &e,
55 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
60 send_ldap_error( op, rs, LDAP_OTHER,
67 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
68 sock_print_conn( fp, op->o_conn, si );
69 sock_print_suffixes( fp, op
33 sock_back_compare( Operation *op, SlapReply *rs ) argument
[all...]
H A Dunbind.c33 Operation *op,
37 struct sockinfo *si = (struct sockinfo *) op->o_bd->be_private;
41 send_ldap_error( op, rs, LDAP_OTHER,
48 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
49 sock_print_conn( fp, op->o_conn, si );
50 sock_print_suffixes( fp, op->o_bd );
32 sock_back_unbind( Operation *op, SlapReply *rs ) argument
H A Ddelete.c33 Operation *op,
36 struct sockinfo *si = (struct sockinfo *) op->o_bd->be_private;
42 e.e_name = op->o_req_dn;
43 e.e_nname = op->o_req_ndn;
50 if ( ! access_allowed( op, &e,
53 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
58 send_ldap_error( op, rs, LDAP_OTHER,
65 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
66 sock_print_conn( fp, op->o_conn, si );
67 sock_print_suffixes( fp, op
32 sock_back_delete( Operation *op, SlapReply *rs ) argument
[all...]
/macosx-10.9.5/sudo-72/src/zlib/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/macosx-10.9.5/zlib-53/zlib/
H A Dinffast.c96 unsigned op; /* code bits, operation, extra bits, or */ local
134 op = (unsigned)(here.bits);
135 hold >>= op; local
136 bits -= op;
137 op = (unsigned)(here.op);
138 if (op == 0) { /* literal */
144 else if (op & 16) { /* length base */
146 op &= 15; /* number of extra bits */
147 if (op) {
153 hold >>= op; local
166 hold >>= op; local
188 hold >>= op; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dopen.c48 _ast_open(const char* path, int op, ...)
57 va_start(ap, op);
58 mode = (op & O_CREAT) ? va_arg(ap, int) : S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH;
60 if (op & ~(_ast_O_LOCAL-1))
62 if (!(op & O_CREAT))
63 op &= ~O_EXCL;
66 if (op & O_TRUNC)
68 if ((op & O_EXCL) && !access(path, F_OK))
73 if ((fd = creat(path, (op & O_EXCL) ? 0 : mode)) < 0)
75 if (op
[all...]
H A Dfcntl.c52 _ast_fcntl(int fd, int op, ...)
60 va_start(ap, op);
61 if (op >= _ast_F_LOCAL) switch (op)
66 op = dup2(fd, n);
71 op = fstat(fd, &st);
77 op = ioctl(fd, n == FD_CLOEXEC ? FIOCLEX : FIONCLEX, 0);
82 op = -1;
87 op = fcntl(fd, op, va_ar
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-monitor/
H A Dmodify.c34 monitor_back_modify( Operation *op, SlapReply *rs ) argument
37 monitor_info_t *mi = ( monitor_info_t * )op->o_bd->be_private;
44 monitor_cache_dn2entry( op, rs, &op->o_req_ndn, &e, &matched );
48 if ( !access_allowed_mask( op, matched,
57 send_ldap_result( op, rs );
65 if ( !acl_check_modlist( op, e, op->orm_modlist )) {
69 assert( !SLAP_SHADOW( op->o_bd ) );
70 slap_mods_opattrs( op,
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-shell/
H A Dcompare.c43 Operation *op,
46 struct shellinfo *si = (struct shellinfo *) op->o_bd->be_private;
52 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
58 e.e_name = op->o_req_dn;
59 e.e_nname = op->o_req_ndn;
66 if ( ! access_allowed( op, &e,
69 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
74 send_ldap_error( op, rs, LDAP_OTHER,
86 fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
87 print_suffixes( wfp, op
42 shell_back_compare( Operation *op, SlapReply *rs ) argument
[all...]
H A Dunbind.c43 Operation *op,
47 struct shellinfo *si = (struct shellinfo *) op->o_bd->be_private;
60 fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
61 print_suffixes( wfp, op->o_bd );
62 fprintf( wfp, "dn: %s\n", (op->o_conn->c_dn.bv_len ? op->o_conn->c_dn.bv_val : "") );
42 shell_back_unbind( Operation *op, SlapReply *rs ) argument
H A Dmodrdn.c43 Operation *op,
46 struct shellinfo *si = (struct shellinfo *) op->o_bd->be_private;
52 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
58 e.e_name = op->o_req_dn;
59 e.e_nname = op->o_req_ndn;
66 if ( ! access_allowed( op, &e, entry, NULL,
67 op->oq_modrdn.rs_newSup ? ACL_WDEL : ACL_WRITE,
70 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
75 send_ldap_error( op, rs, LDAP_OTHER,
82 fprintf( wfp, "msgid: %ld\n", (long) op
42 shell_back_modrdn( Operation *op, SlapReply *rs ) argument
[all...]
H A Dbind.c43 Operation *op,
46 struct shellinfo *si = (struct shellinfo *) op->o_bd->be_private;
54 switch ( be_rootdn_bind( op, rs ) ) {
63 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
69 e.e_name = op->o_req_dn;
70 e.e_nname = op->o_req_ndn;
77 if ( ! access_allowed( op, &e,
80 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
85 send_ldap_error( op, rs, LDAP_OTHER,
92 fprintf( wfp, "msgid: %ld\n", (long) op
42 shell_back_bind( Operation *op, SlapReply *rs ) argument
[all...]
H A Ddelete.c43 Operation *op,
46 struct shellinfo *si = (struct shellinfo *) op->o_bd->be_private;
52 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
58 e.e_name = op->o_req_dn;
59 e.e_nname = op->o_req_ndn;
66 if ( ! access_allowed( op, &e,
69 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
74 send_ldap_error( op, rs, LDAP_OTHER,
81 fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
82 print_suffixes( wfp, op
42 shell_back_delete( Operation *op, SlapReply *rs ) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGMinifiedNode.cpp37 ASSERT(belongsInMinifiedGraph(node->op()));
40 result.m_op = node->op();
41 if (hasChild(node->op()))
43 else if (hasConstantNumber(node->op()))
45 else if (hasWeakConstant(node->op()))
48 ASSERT(node->op() == PhantomArguments);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/stdio/
H A Dfseeko.c31 fseeko(Sfio_t* f, off_t off, int op) argument
33 STDIO_INT(f, "fseeko", int, (Sfio_t*, off_t, int), (f, off, op))
35 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
41 fseeko64(Sfio_t* f, int64_t off, int op) argument
43 STDIO_INT(f, "fseeko64", int, (Sfio_t*, int64_t, int), (f, off, op))
45 return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dtxn.c35 Operation *op, SlapReply *rs )
41 op->o_log_prefix, 0, 0, 0, 0 );
43 if( op->ore_reqdata != NULL ) {
48 op->o_bd = op->o_conn->c_authz_backend;
49 if( backend_check_restrictions( op, rs,
56 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
58 if( op->o_conn->c_txn != CONN_TXN_INACTIVE ) {
64 assert( op->o_conn->c_txn_backend == NULL );
65 op
34 txn_start_extop( Operation *op, SlapReply *rs ) argument
80 txn_spec_ctrl( Operation *op, SlapReply *rs, LDAPControl *ctrl ) argument
114 txn_end_extop( Operation *op, SlapReply *rs ) argument
[all...]
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(this.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(this.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/zlib/
H A Dinffast.c119 unsigned op; /* code bits, operation, extra bits, or */ local
157 op = (unsigned)(this.bits);
158 hold >>= op; local
159 bits -= op;
160 op = (unsigned)(this.op);
161 if (op == 0) { /* literal */
167 else if (op & 16) { /* length base */
169 op &= 15; /* number of extra bits */
170 if (op) {
176 hold >>= op; local
189 hold >>= op; local
211 hold >>= op; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-ldap/
H A Dcompare.c36 Operation *op,
39 ldapinfo_t *li = (ldapinfo_t *)op->o_bd->be_private;
47 if ( !ldap_back_dobind( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
53 ctrls = op->o_ctrls;
54 rc = ldap_back_controls_add( op, rs, lc, &ctrls );
56 send_ldap_result( op, rs );
60 rs->sr_err = ldap_compare_ext( lc->lc_ld, op->o_req_dn.bv_val,
61 op->orc_ava->aa_desc->ad_cname.bv_val,
62 &op->orc_ava->aa_value,
64 rc = ldap_back_op_result( lc, op, r
35 ldap_back_compare( Operation *op, SlapReply *rs ) argument
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-perl/
H A Dcompare.c29 Operation *op,
35 PerlBackend *perl_back = (PerlBackend *)op->o_bd->be_private;
37 avastr = ch_malloc( op->orc_ava->aa_desc->ad_cname.bv_len + 1 +
38 op->orc_ava->aa_value.bv_len + 1 );
41 op->orc_ava->aa_desc->ad_cname.bv_val ), "=" ),
42 op->orc_ava->aa_value.bv_val );
52 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0)));
73 send_ldap_result( op, rs );
28 perl_back_compare( Operation *op, SlapReply *rs ) argument
H A Dmodrdn.c22 Operation *op,
25 PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
36 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0 )));
37 XPUSHs(sv_2mortal(newSVpv( op->orr_newrdn.bv_val , 0 )));
38 XPUSHs(sv_2mortal(newSViv( op->orr_deleteoldrdn )));
39 if ( op->orr_newSup != NULL ) {
40 XPUSHs(sv_2mortal(newSVpv( op->orr_newSup->bv_val , 0 )));
59 send_ldap_result( op, rs );
21 perl_back_modrdn( Operation *op, SlapReply *rs ) argument
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/proxyOld/
H A DproxyOld.c34 * For usability purposes, we're copying the op / exop behavior from the
47 Operation *op,
61 if ( op->o_proxy_authz != SLAP_CONTROL_NONE ) {
66 op->o_proxy_authz = ctrl->ldctl_iscritical
91 op->o_connid, 0, 0 );
96 op->o_connid, dn.bv_val, 0 );
97 rc = dnNormalize( 0, NULL, NULL, &dn, &authzDN, op->o_tmpmemctx );
101 rc = slap_sasl_authorized( op, &op->o_ndn, &authzDN );
103 op
46 proxyOld_parse( Operation *op, SlapReply *rs, LDAPControl *ctrl ) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dtok822_find.c51 TOK822 *tok822_find_type(TOK822 *head, int op) argument
55 for (tp = head; tp != 0 && tp->type != op; tp = tp->next)
62 TOK822 *tok822_rfind_type(TOK822 *tail, int op) argument
66 for (tp = tail; tp != 0 && tp->type != op; tp = tp->prev)
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/opensslUtils/
H A DopensslUtils.h40 const char *op = NULL);
50 unsigned long logSslErrInfo(const char *op);
53 const char *op);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dswapput.c34 * put v of n chars into b according to op
38 swapput(int op, void* b, int n, intmax_t v) argument
47 if (op)
48 swapmem(op, p, p, n);

Completed in 193 milliseconds

1234567891011>>