Home
last modified time | relevance | path

Searched refs:DynGet (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/krb5/src/lib/rpc/
H A Ddyntest.c72 if ((DynGet(obj, -5) != NULL) ||
73 (DynGet(obj, 0) != NULL) || (DynGet(obj, 1000) != NULL)) {
116 data = (char *) DynGet(obj, 0);
125 data = (char *) DynGet(obj, 13);
132 data = (char *) DynGet(obj, DynSize(obj));
138 data = DynGet(obj, 14);
168 data = DynGet(obj, 14 + strlen(insert1) + 1);
176 data = DynGet(obj, 0);
H A Ddyn.h49 #define DynGet gssrpcint_DynGet macro
67 /*@dependent@*//*@null@*/ DynPtr DynGet (DynObject obj, int num);
H A Dxdr_alloc.c75 return (caddr_t) DynGet((DynObject) xdrs->x_private, 0); in xdralloc_getdata()
H A Ddyn.c314 DynGet(DynObjectP obj, int num) in DynGet() function