Searched refs:op (Results 101 - 125 of 4074) sorted by relevance

1234567891011>>

/netbsd-current/external/mpl/bind/dist/lib/isc/include/isc/
H A Donce.h30 #define isc_once_do(op, f) \
31 ((pthread_once((op), (f)) == 0) ? ISC_R_SUCCESS : ISC_R_UNEXPECTED)
/netbsd-current/external/bsd/openldap/dist/servers/slapd/
H A Dadd.c42 do_add( Operation *op, SlapReply *rs ) argument
44 BerElement *ber = op->o_ber;
59 op->o_log_prefix );
76 op->o_log_prefix );
77 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
82 op->o_log_prefix, dn.bv_val );
97 op->o_log_prefix );
98 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
105 op->o_log_prefix, tmp.sml_type.bv_val );
106 send_ldap_error( op, r
240 fe_op_add( Operation *op, SlapReply *rs ) argument
594 slap_add_opattrs( Operation *op, const char **text, char *textbuf, size_t textlen, int manage_ctxcsn ) argument
[all...]
H A Dextended.c121 Operation *op,
129 op->o_log_prefix );
131 if( op->o_protocol < LDAP_VERSION3 ) {
133 op->o_log_prefix, op->o_protocol );
134 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "requires LDAPv3" );
139 if ( ber_scanf( op->o_ber, "{m" /*}*/, &op->ore_reqoid ) == LBER_ERROR ) {
141 op->o_log_prefix );
142 send_ldap_discon( op, r
120 do_extended( Operation *op, SlapReply *rs ) argument
205 fe_extended( Operation *op, SlapReply *rs ) argument
429 whoami_extop( Operation *op, SlapReply *rs ) argument
[all...]
H A Dcancel.c37 int cancel_extop( Operation *op, SlapReply *rs ) argument
45 assert( ber_bvcmp( &slap_EXOP_CANCEL, &op->ore_reqoid ) == 0 );
47 if ( op->ore_reqdata == NULL ) {
52 if ( op->ore_reqdata->bv_len == 0 ) {
58 ber_init2( ber, op->ore_reqdata, 0 );
66 op->o_log_prefix, opid );
73 if ( opid == op->o_msgid ) {
74 op->o_cancel = SLAP_CANCEL_DONE;
78 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
80 if ( op
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dtok822_find.c53 TOK822 *tok822_find_type(TOK822 *head, int op) argument
57 for (tp = head; tp != 0 && tp->type != op; tp = tp->next)
64 TOK822 *tok822_rfind_type(TOK822 *tail, int op) argument
68 for (tp = tail; tp != 0 && tp->type != op; tp = tp->prev)
/netbsd-current/external/bsd/openldap/dist/contrib/slapd-modules/proxyOld/
H A DproxyOld.c36 * For usability purposes, we're copying the op / exop behavior from the
49 Operation *op,
63 if ( op->o_proxy_authz != SLAP_CONTROL_NONE ) {
68 op->o_proxy_authz = ctrl->ldctl_iscritical
93 op->o_connid );
98 op->o_connid, dn.bv_val );
99 rc = dnNormalize( 0, NULL, NULL, &dn, &authzDN, op->o_tmpmemctx );
103 rc = slap_sasl_authorized( op, &op->o_ndn, &authzDN );
105 op
48 proxyOld_parse( Operation *op, SlapReply *rs, LDAPControl *ctrl ) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libobjc/
H A Dnil_method.c52 nil_method (id receiver, SEL op __attribute__ ((__unused__)))
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/ia64/
H A Dpcrel.s16 .macro m1 op, opnd1
18 op opnd1 _e&op - _&op
20 .macro m2 op, opnd1
22 op opnd1 @pcrel(esym)
24 .macro m3 op, opnd1
26 op opnd1 esym - _&op
28 .macro m4 op, opnd
[all...]
/netbsd-current/external/gpl3/gcc/dist/libobjc/
H A Dnil_method.c52 nil_method (id receiver, SEL op __attribute__ ((__unused__)))
/netbsd-current/external/lgpl3/mpc/dist/src/
H A Dcosh.c24 mpc_cosh (mpc_ptr rop, mpc_srcptr op, mpc_rnd_t rnd) argument
26 /* cosh(op) = cos(i*op) */
29 /* z = i*op without copying significand */
30 mpc_realref (z)[0] = mpc_imagref (op)[0];
31 mpc_imagref (z)[0] = mpc_realref (op)[0];
H A Dui_ui_sub.c26 mpc_srcptr op, mpc_rnd_t rnd)
30 inex_re = mpfr_ui_sub (mpc_realref (rop), re, mpc_realref (op), MPC_RND_RE (rnd));
31 inex_im = mpfr_ui_sub (mpc_imagref (rop), im, mpc_imagref (op), MPC_RND_IM (rnd));
25 mpc_ui_ui_sub(mpc_ptr rop, unsigned long int re, unsigned long int im, mpc_srcptr op, mpc_rnd_t rnd) argument
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-sock/
H A Ddelete.c38 Operation *op,
41 struct sockinfo *si = (struct sockinfo *) op->o_bd->be_private;
47 e.e_name = op->o_req_dn;
48 e.e_nname = op->o_req_ndn;
55 if ( ! access_allowed( op, &e,
58 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
63 send_ldap_error( op, rs, LDAP_OTHER,
70 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
71 sock_print_conn( fp, op->o_conn, si );
72 sock_print_suffixes( fp, op
37 sock_back_delete( Operation *op, SlapReply *rs ) argument
[all...]
H A Dcompare.c39 Operation *op,
42 struct sockinfo *si = (struct sockinfo *) op->o_bd->be_private;
49 e.e_name = op->o_req_dn;
50 e.e_nname = op->o_req_ndn;
57 if ( ! access_allowed( op, &e,
60 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
65 send_ldap_error( op, rs, LDAP_OTHER,
72 fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
73 sock_print_conn( fp, op->o_conn, si );
74 sock_print_suffixes( fp, op
38 sock_back_compare( Operation *op, SlapReply *rs ) argument
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-dnssrv/
H A Dcompare.c39 Operation *op,
44 assert( get_manageDSAit( op ) );
46 send_ldap_error( op, rs, LDAP_OTHER,
38 dnssrv_back_compare( Operation *op, SlapReply *rs ) argument
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/aarch64/
H A Dldst-reg-unscaled-imm.s31 .macro op2_no_imm op, reg
32 \op \reg\()7, [sp]
35 .macro op2 op, reg, simm
36 \op \reg\()7, [sp, #\simm]
40 .macro ld_or_st op, suffix, reg
42 op2 \op\suffix, \reg, \simm
44 op2_no_imm \op\suffix, \reg
46 op2 \op\suffix, \reg, \simm
51 .macro ld_or_st_v op
54 op2 \op, \re
[all...]
H A Dsystem.s35 .macro all_barriers op, from=0, to=15
36 \op \from
38 all_barriers \op, "(\from+1)", \to
42 all_barriers op=dsb, from=0, to=15
43 all_barriers op=dmb, from=0, to=15
44 all_barriers op=isb, from=0, to=15
54 .macro all_prefetchs op, from=0, to=31
55 \op \from, LABEL1
56 \op \from, [sp, x15, lsl #0]
57 \op \fro
[all...]
/netbsd-current/external/bsd/openldap/dist/contrib/slapd-modules/samba4/
H A Dpguid.c51 pguid_op_add( Operation *op, SlapReply *rs ) argument
53 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
61 if ( dn_match( &op->o_req_ndn, &op->o_bd->be_nsuffix[0] ) ) {
65 dnParent( &op->o_req_dn, &pdn );
66 dnParent( &op->o_req_ndn, &pndn );
68 rc = overlay_entry_get_ov( op, &pndn, NULL, slap_schema.si_ad_entryUUID, 0, &e, on );
71 op->o_log_prefix, pdn.bv_val, rc );
78 op->o_log_prefix, pdn.bv_val, rc );
83 if ( op
127 pguid_op_rename( Operation *op, SlapReply *rs ) argument
217 pguid_repair_cb( Operation *op, SlapReply *rs ) argument
290 Operation *op; local
[all...]
H A Drdnval.c72 rdnval_unique_check_cb( Operation *op, SlapReply *rs ) argument
75 int *p = (int *)op->o_callback->sc_private;
83 rdnval_unique_check( Operation *op, BerVarray vals ) argument
85 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
87 BackendDB db = *op->o_bd;
88 Operation op2 = *op;
97 if ( op->o_tag == LDAP_REQ_ADD
98 && be_issuffix( op->o_bd, &op->o_req_ndn ) )
106 op2.o_dn = op
183 rdnval_rdn2vals( Operation *op, SlapReply *rs, struct berval *dn, struct berval *ndn, BerVarray *valsp, BerVarray *nvalsp, int *numvalsp ) argument
302 rdnval_op_add( Operation *op, SlapReply *rs ) argument
343 rdnval_op_rename( Operation *op, SlapReply *rs ) argument
421 rdnval_repair_cb( Operation *op, SlapReply *rs ) argument
478 Operation *op; local
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-mdb/
H A Dcompare.c30 mdb_compare( Operation *op, SlapReply *rs ) argument
32 struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
34 int manageDSAit = get_manageDSAit( op );
39 rs->sr_err = mdb_opinfo_get(op, mdb, 1, &moi);
44 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
51 rs->sr_err = mdb_dn2entry( op, rtxn, NULL, &op->o_req_ndn, &e, NULL, 1 );
68 if ( ! access_allowed( op, e, slap_schema.si_ad_entry,
76 BerVarray ref = get_entry_referrals( op, e );
78 &op
[all...]
/netbsd-current/games/monop/
H A Dprop.c67 OWN *op; local
69 op = calloc(1, sizeof (OWN));
70 if (op == NULL)
72 op->sqr = &board[op_sqr];
73 val = value(op->sqr);
77 free(op);
82 op->next = tp;
84 last_tp->next = op;
86 *head = op;
97 OWN *op, *last_o local
213 OWN *op; local
[all...]
H A Dmisc.c131 OWN *op; /* current owned prop */ local
134 op = play[pl].own_list;
136 printf("op [%p] = play[pl [%d] ].own_list;\n", op, pl);
138 while (op) {
140 printf("op->sqr->type = %d\n", op->sqr->type);
142 switch (op->sqr->type) {
147 for (num = 0; op && op
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-meta/
H A Dmodrdn.c40 meta_back_modrdn( Operation *op, SlapReply *rs ) argument
42 metainfo_t *mi = ( metainfo_t * )op->o_bd->be_private;
54 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
55 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR ) ) {
63 dc.conn = op->o_conn;
66 if ( op->orr_newSup ) {
93 if ( op->o_protocol == 0 || op->o_protocol == LDAP_VERSION3 ) {
99 /* op->o_protocol cannot be anything but LDAPv3,
102 send_ldap_result( op, r
[all...]
/netbsd-current/usr.bin/xlint/lint1/
H A Dckbool.c60 is_typeok_strict_bool_binary(op_t op, argument
67 if (op == FARG && rn->tn_sys)
74 if (op == ASSIGN || op == ANDASS || op == XORASS || op == ORASS ||
75 op == RETURN || op == INIT || op == FARG)
78 if (op
95 typeok_strict_bool_binary_compatible(op_t op, int arg, const tnode_t *ln, tspec_t lt, const tnode_t *rn, tspec_t rt) argument
120 typeok_scalar_strict_bool(op_t op, const mod_t *mp, int arg, const tnode_t *ln, const tnode_t *rn) argument
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-perl/
H A Ddelete.c24 Operation *op,
27 PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
38 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , op->o_req_dn.bv_len )));
57 send_ldap_result( op, rs );
23 perl_back_delete( Operation *op, SlapReply *rs ) argument
/netbsd-current/external/bsd/ipf/dist/lib/
H A Dload_dstlistnode.c25 iplookupop_t op; local
37 op.iplo_unit = role;
38 op.iplo_type = IPLT_DSTLIST;
39 op.iplo_arg = 0;
40 op.iplo_struct = dst;
41 op.iplo_size = sizeof(*dst);
43 op.iplo_size += node->ipfd_dest.fd_name;
44 (void) strncpy(op.iplo_name, name, sizeof(op.iplo_name));
55 err = pool_ioctl(iocfunc, SIOCLOOKUPADDNODE, &op);
[all...]

Completed in 191 milliseconds

1234567891011>>