/illumos-gate/usr/src/cmd/fm/eversholt/common/ |
H A D | alloc.h | 49 #define MALLOC(nbytes) alloc_malloc(nbytes, __FILE__, __LINE__) macro 56 #define MALLOC(nbytes) alloc_malloc(nbytes, "???", __LINE__) macro
|
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/ |
H A D | util.h | 40 #define MALLOC(object_type) ((object_type *) malloc(sizeof(object_type))) macro
|
/illumos-gate/usr/src/cmd/audio/include/ |
H A D | libaudio_impl.h | 49 * MALLOC - allocate memory 50 * foo = MALLOC(struct foobar); -- alloc 1 foobar 64 #define MALLOC(type) \ macro
|
/illumos-gate/usr/src/cmd/logadm/ |
H A D | err.h | 61 #define MALLOC(nbytes) err_malloc(nbytes, __FILE__, __LINE__) macro
|
/illumos-gate/usr/src/lib/efcode/include/fcode/ |
H A D | private.h | 61 #define MALLOC(x) safe_malloc((x), __FILE__, __LINE__) macro
|
/illumos-gate/usr/src/cmd/krb5/kwarn/ |
H A D | kwarndtest.c | 23 #define MALLOC(n) malloc(n) macro
|
/illumos-gate/usr/src/cmd/ldap/ns_ldap/ |
H A D | mapping.c | 83 #define MALLOC(ptr, len) \ macro 96 MALLOC(ptr1, len1); \ 101 MALLOC(ptr2, len2); \ 164 MALLOC(keyfilter, totlen);
|
/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/ |
H A D | options.c | 59 #define MALLOC(pointer) \ macro 292 MALLOC(A); 301 MALLOC(c); 313 MALLOC(d); 319 MALLOC(D); 326 MALLOC(e); 333 MALLOC(f); 339 MALLOC(P); 345 MALLOC(F); 371 MALLOC( [all...] |
/illumos-gate/usr/src/cmd/lp/model/netpr/ |
H A D | netpr.h | 86 #define MALLOC (int size, char * msg) \ macro
|
/illumos-gate/usr/src/cmd/gencat/ |
H A D | gencat.c | 67 #define MALLOC(n) malloc((unsigned)(n)) macro 171 p = (struct cat_set *) MALLOC(sizeof (struct cat_set)); 289 p = (struct cat_msg *) MALLOC(sizeof (struct cat_msg) + len); 555 cat = MALLOC(hdr.__mem); 580 text = MALLOC(text_size); 1061 cat = MALLOC(n);
|
/illumos-gate/usr/src/common/smbclnt/ |
H A D | smbfs_ntacl.c | 65 #define MALLOC(size) kmem_alloc(size, KM_SLEEP) macro 68 #define MALLOC(size) malloc(size) macro 114 if ((sid = MALLOC(sidsz)) == NULL) 218 if ((ace = MALLOC(alloc_size)) == NULL) 347 if ((acl = MALLOC(aclsz)) == NULL) 443 if ((sd = MALLOC(sizeof (*sd))) == NULL) 946 mapinfo = MALLOC(mapcnt * sizeof (*mapinfo)); 1068 zacep0 = MALLOC(zacl_size); 1206 sid = MALLOC(size); 1383 if ((ntace = MALLOC(alloc_siz [all...] |
/illumos-gate/usr/src/cmd/gss/gssd/ |
H A D | gssd_clnt_stubs.c | 37 #define MALLOC(n) kmem_alloc((n), KM_SLEEP) macro 58 #define MALLOC(n) malloc(n) macro 135 MALLOC(sizeof (GSS_OID) * desired_mechs->count); 142 MALLOC(desired_mechs->elements[i].length); 198 *actual_mechs = (gss_OID_set) MALLOC(sizeof (gss_OID_set_desc)); 202 MALLOC(sizeof (gss_OID_desc) * (*actual_mechs)->count); 208 (void *) MALLOC((*actual_mechs)->elements[i].length); 387 *actual_mechs = (gss_OID_set) MALLOC(sizeof (gss_OID_set_desc)); 391 MALLOC(sizeof (gss_OID_desc) * (*actual_mechs)->count); 397 (void *) MALLOC((*actual_mech [all...] |
H A D | gssdtest.c | 65 #define MALLOC(n) kmem_alloc((n), KM_SLEEP) macro 76 char *new = MALLOC(len+1); 83 #define MALLOC(n) malloc(n) macro 414 desired_mechs = (gss_OID_set) MALLOC(sizeof (gss_OID_desc)); 1407 message_buffer.value = (void *) MALLOC(message_buffer.length); 1569 (void *) MALLOC(input_message_buffer.length); 1853 byteStr = (unsigned char *)MALLOC(newLen+1);
|
/illumos-gate/usr/src/uts/common/gssapi/include/ |
H A D | mechglueP.h | 687 #define MALLOC(n) kmem_alloc((n), KM_SLEEP) macro 774 #define MALLOC(n) malloc(n) macro 777 MALLOC(sizeof (struct kgss_cred)) 779 #define KGSS_ALLOC() (struct kgss_ctx *)MALLOC(sizeof (struct kgss_ctx))
|
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/ |
H A D | krb5.h | 93 #ifdef MALLOC 94 #undef MALLOC macro 96 #define MALLOC(n) kmem_zalloc((n), KM_SLEEP) macro 105 #define MALLOC(n) malloc(n) macro
|