Searched refs:DynObject (Results 1 – 3 of 3) sorted by relevance
| /freebsd/crypto/krb5/src/lib/rpc/ |
| H A D | dyn.h | 31 } DynObjectRec, *DynObject; typedef 60 /*@null@*//*@only@*/ DynObject DynCreate (int el_size, int inc); 61 /*@null@*//*@only@*/ DynObject DynCopy (DynObject obj); 62 int DynDestroy (/*@only@*/DynObject obj), DynRelease (DynObject obj); 63 int DynAdd (DynObject obj, void *el); 64 int DynPut (DynObject obj, void *el, int idx); 65 int DynInsert (DynObject obj, int idx, /*@observer@*/void *els, int num); 66 int DynDelete (DynObject obj, int idx); 67 /*@dependent@*//*@null@*/ DynPtr DynGet (DynObject obj, int num); 68 /*@observer@*/ DynPtr DynArray (DynObject obj); [all …]
|
| H A D | xdr_alloc.c | 75 return (caddr_t) DynGet((DynObject) xdrs->x_private, 0); in xdralloc_getdata() 80 DynRelease((DynObject) xdrs->x_private); in xdralloc_release() 85 DynDestroy((DynObject) xdrs->x_private); in xdralloc_destroy() 102 if (DynInsert((DynObject) xdrs->x_private, in xdralloc_putlong() 103 DynSize((DynObject) xdrs->x_private), &l, in xdralloc_putlong() 124 if (DynInsert((DynObject) xdrs->x_private, in xdralloc_putbytes() 125 DynSize((DynObject) xdrs->x_private), in xdralloc_putbytes() 133 return DynSize((DynObject) xdrs->x_private); in xdralloc_getpos()
|
| H A D | dyntest.c | 38 DynObject obj;
|