| /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/ |
| alloc.h | 51 #define FREE(ptr) alloc_free(ptr, __FILE__, __LINE__) 58 #define FREE(ptr) alloc_free(ptr, "???", __LINE__)
|
| /onnv/onnv-gate/usr/src/cmd/pools/poolstat/ |
| poolstat_utils.h | 41 #define FREE(p) ((void) (free((p)), (p) = 0)) 46 extern void Free(void *);
|
| /onnv/onnv-gate/usr/src/cmd/audio/include/ |
| libaudio_impl.h | 55 * FREE - de-allocate memory 70 #define FREE(ptr) \ 71 (void) free((char *)(ptr))
|
| /onnv/onnv-gate/usr/src/cmd/ypcmd/revnetgroup/ |
| util.h | 46 #define FREE(ptr) free((char *) ptr)
|
| /onnv/onnv-gate/usr/src/head/ |
| mp.h | 87 #define FREE(x) _mp_xfree(&(x)) /* Compatibility */
|
| /onnv/onnv-gate/usr/src/cmd/logadm/ |
| err.h | 67 #define FREE(ptr) err_free(ptr, __FILE__, __LINE__)
|
| /onnv/onnv-gate/usr/src/lib/efcode/include/fcode/ |
| private.h | 64 #define FREE(x) safe_free((x), __FILE__, __LINE__)
|
| /onnv/onnv-gate/usr/src/cmd/fmli/sys/ |
| coproc.c | 59 #define FREE(STR) if (STR) free(STR) 331 FREE(Cotable[i].expect); 332 FREE(Cotable[i].w_path); 333 FREE(Cotable[i].r_path); 334 FREE(Cotable[i].send); 335 FREE(Cotable[i].id);
|
| /onnv/onnv-gate/usr/src/cmd/krb5/kwarn/ |
| kwarndtest.c | 25 #define FREE(x, n) free(x) 99 FREE(argv_array, (argc+1)*sizeof (char *)); 105 * parse_input_line, so it can be free'd at the end of the loop. 123 FREE(argv_array, (argc+2) * sizeof (char *)); 128 /* free argv array */ 130 FREE(argv_array, (argc+2) * sizeof (char *));
|
| /onnv/onnv-gate/usr/src/lib/libmapmalloc/common/ |
| textmem.c | 36 * Simplified version of malloc(), free() and realloc(), to be linked with 47 * Freed blocks are joined in larger blocks. Free pages are unmapped. 76 #define FREE 0 122 if (block->status == FREE && block->size >= size) 145 block->status = FREE; 174 * Join block with next one if it is free 176 if (block->next && block->next->status == FREE) { 189 block->status = FREE; 196 free(void *ptr) function 206 block->status = FREE; [all...] |
| /onnv/onnv-gate/usr/src/cmd/sgs/rtld/common/ |
| malloc.c | 33 * Simplified version of malloc(), calloc() and free(), to be linked with 40 * Freed blocks are joined in larger blocks. Free pages are unmapped. 65 #define FREE 0 117 block2->status == FREE; block2 = block2->next) { 124 * If a page becomes free, leave it, and save the unmapping 128 * Free the defrag index. 144 newblock->status = FREE; 171 if ((block->status == FREE) && (block->size >= size)) 193 block->status = FREE; 234 * Join block with next one if it is free 277 free(void *ptr) function [all...] |
| /onnv/onnv-gate/usr/src/ucblib/librpcsoc/ |
| svc_udp.c | 305 #define FREE(addr, type, size) \ 384 FREE(uc, struct udp_cache, 1); 392 FREE((char *)uc->uc_entries, cache_ptr, size * SPARSENESS); 393 FREE((char *)uc, struct udp_cache, 1); 445 FREE(victim, struct cache_node, 1);
|
| /onnv/onnv-gate/usr/src/uts/common/rpc/sec/ |
| auth_des.c | 64 #define FREE(ptr, size) mem_free((char *)(ptr), (int)size) 196 FREE(ad->ad_fullname, ad->ad_fullnamelen + 1); 198 FREE(ad->ad_servername, ad->ad_servernamelen + 1); 200 FREE(ad, sizeof (struct ad_private)); 202 FREE(auth, sizeof (AUTH)); 418 FREE(ad->ad_fullname, ad->ad_fullnamelen + 1); 419 FREE(ad->ad_servername, ad->ad_servernamelen + 1); 420 FREE(ad, sizeof (struct ad_private)); 421 FREE(auth, sizeof (AUTH));
|
| /onnv/onnv-gate/usr/src/cmd/fmli/inc/ |
| parse.h | 45 #define FREE 0
|
| /onnv/onnv-gate/usr/src/cmd/gencat/ |
| gencat.c | 66 #define FREE(x) free((char *)(x)) 262 /* free all messages in the set */ 265 FREE(p); 272 FREE(setp); 336 FREE(current_set->first_msg); 352 FREE(current_msg); 397 FREE(current_msg); 567 FREE(cat); 1117 free(cat) [all...] |
| /onnv/onnv-gate/usr/src/cmd/gss/gssd/ |
| gssd_clnt_stubs.c | 38 #define FREE(x, n) kmem_free((x), (n)) 59 #define FREE(x, n) free(x) 174 /* free the allocated memory for the flattened name and desire_mechs */ 178 FREE(arg.desired_mechs.GSS_OID_SET_val[i].GSS_OID_val, 180 FREE(arg.desired_mechs.GSS_OID_SET_val, 222 * free the memory allocated for the results and return with the status 376 /* free the allocated memory for the flattened name */ 414 * free the memory allocated for the results and return with the status 700 /* free the allocated memory for the flattened name * [all...] |
| gssdtest.c | 69 #define FREE(x, n) kmem_free((x), (n)) 87 #define FREE(x, n) free(x) 189 FREE(argv_array, (argc+1)*sizeof (char *)); 195 * parse_input_line, so it can be free'd at the end of the loop. 210 FREE(argv_array, (argc+2) * sizeof (char *)); 330 FREE(argv_array, (argc+2) * sizeof (char *)); 335 /* free argv array */ 337 FREE(argv_array, (argc+2) * sizeof (char *)); 460 FREE(string, (actual_mechs->elements->length+1)*4+1) [all...] |
| /onnv/onnv-gate/usr/src/uts/common/gssapi/include/ |
| mechglueP.h | 720 #define FREE(x, n) kmem_free((x), (n)) 810 #define FREE(x, n) free(x) 813 #define KGSS_CRED_FREE(cred) free(cred) 815 #define KGSS_FREE(ctx) free(ctx)
|
| /onnv/onnv-gate/usr/src/lib/libresolv2/common/isc/ |
| eventlib_p.h | 49 #define OKFREE(x, y) if ((x) < 0) { FREE((y)); EV_ERR(errno); } \ 61 #define FREE(p) memput((p), sizeof *(p)) 167 enum { Accept, File, Stream, Timer, Wait, Free, Null } type; 174 struct { struct evEvent_p *next; } free; member in union:evEvent_p::__anon24
|
| /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/include/ |
| krb5.h | 99 #define FREE(x, n) kmem_free((x), (n)) 107 #define FREE(x, n) free(x) [all...] |