Searched defs:oa (Results 1 - 7 of 7) sorted by relevance

/osnet-11/usr/src/lib/libnsl/rpc/
H A Drpc_callmsg.c54 struct opaque_auth *oa; local
76 oa = &cmsg->rm_call.cb_cred;
77 IXDR_PUT_ENUM(buf, oa->oa_flavor);
78 IXDR_PUT_INT32(buf, oa->oa_length);
79 if (oa->oa_length) {
80 (void) memcpy(buf, oa->oa_base, oa->oa_length);
81 buf += RNDUP(oa->oa_length) / sizeof (int32_t);
83 oa = &cmsg->rm_call.cb_verf;
84 IXDR_PUT_ENUM(buf, oa
[all...]
H A Drpc_prot.c133 struct opaque_auth *oa; local
145 oa = &ar->ar_verf;
146 IXDR_PUT_ENUM(buf, oa->oa_flavor);
147 IXDR_PUT_INT32(buf, oa->oa_length);
148 if (oa->oa_length) {
149 (void) memcpy(buf, oa->oa_base, oa->oa_length);
151 buf = (rpc_inline_t *)(((caddr_t)buf) + oa->oa_length);
153 if ((rndup = (rndup - oa->oa_length)) > 0) {
187 oa
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dsignal.c78 struct sigaction oa; local
125 if (sigaction(sig, &na, &oa))
129 return oa.sa_handler;
/osnet-11/usr/src/lib/libnisdb/
H A Ddb_mindex3.cc339 __nis_obj_attr_t **oa = 0; local
398 res = mapFromLDAP(t, q, &nq, dbId, &stat, &oa);
679 printObjAttr(oa[i]);
684 if (oa[i] != 0) {
685 o.zo_owner = oa[i]->zo_owner;
686 o.zo_group = oa[i]->zo_group;
687 o.zo_domain = oa[i]->zo_domain;
688 o.zo_access = oa[i]->zo_access;
689 o.zo_ttl = oa[i]->zo_ttl;
856 freeObjAttr(oa, n
[all...]
/osnet-11/usr/src/lib/rpcsec_gss/
H A Dsvc_rpcsec_gss.c1093 struct opaque_auth *oa; local
1104 oa = &msg->rm_call.cb_cred;
1105 if (oa->oa_length > MAX_AUTH_BYTES)
1110 RNDUP(oa->oa_length)))
1120 IXDR_PUT_ENUM(buf, oa->oa_flavor);
1121 IXDR_PUT_U_INT32(buf, oa->oa_length);
1122 if (oa->oa_length) {
1123 len = RNDUP(oa->oa_length);
1127 (void) memcpy((caddr_t)tmp, oa->oa_base, oa
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dpp.c379 I32 oa; local
394 oa = PL_opargs[i] >> OASHIFT;
395 while (oa) {
396 if (oa & OA_OPTIONAL && !seen_question) {
402 if ((oa & (OA_OPTIONAL - 1)) >= OA_AVREF
403 && (oa & (OA_OPTIONAL - 1)) <= OA_SCALARREF
405 && (oa & (OA_OPTIONAL - 1)) != OA_FILEREF
409 str[n++] = ("?$@@%&*$")[oa & (OA_OPTIONAL - 1)];
410 oa = oa >>
[all...]
H A Dop.c5181 register I32 oa = PL_opargs[type] >> OASHIFT; local
5184 if ((oa & OA_OPTIONAL) && (oa >> 4) && !((oa >> 4) & OA_OPTIONAL))
5185 oa &= ~OA_OPTIONAL;
5203 while (oa && kid) {
5206 switch (oa & 7) {
5209 if (numargs == 1 && !(oa >> 4)
5217 if (oa < 16) {
5407 oa >>
5747 OP *oa; local
[all...]

Completed in 36 milliseconds