Searched refs:DynInsert (Results 1 – 4 of 4) sorted by relevance
| /freebsd/crypto/krb5/src/lib/rpc/ |
| H A D | dyntest.c | 145 if (DynInsert(obj, -1, "foo", 4) != DYN_BADINDEX || 146 DynInsert(obj, DynSize(obj) + 1, "foo", 4) != DYN_BADINDEX || 147 DynInsert(obj, 0, "foo", -1) != DYN_BADVALUE) { 152 if (DynInsert(obj, DynSize(obj) - 2, insert3, strlen(insert3) + 158 if (DynInsert(obj, 19, insert2, strlen(insert2)) != DYN_OK) { 163 if (DynInsert(obj, 0, insert1, strlen(insert1)+1) != DYN_OK) {
|
| H A D | dyn.h | 48 #define DynInsert gssrpcint_DynInsert macro 65 int DynInsert (DynObject obj, int idx, /*@observer@*/void *els, int num);
|
| H A D | xdr_alloc.c | 102 if (DynInsert((DynObject) xdrs->x_private, in xdralloc_putlong() 124 if (DynInsert((DynObject) xdrs->x_private, in xdralloc_putbytes()
|
| H A D | dyn.c | 36 return DynInsert(obj, DynSize(obj), els, num); in DynAppend() 236 DynInsert(DynObjectP obj, int idx, void *els_in, int num) in DynInsert() function
|