/titanic_50/usr/src/uts/common/sys/ |
H A D | model.h | 87 #define STRUCT_HANDLE(struct_type, handle) \ argument 90 struct struct_type##32 *m32; \ 91 struct struct_type *m64; \ 96 #define STRUCT_DECL(struct_type, handle) \ argument 97 struct struct_type __##handle##_buf; \ 98 STRUCT_HANDLE(struct_type, handle) 151 #define SIZEOF_STRUCT(struct_type, umodel) \ argument 153 sizeof (struct struct_type##32) : \ 154 sizeof (struct struct_type)) 158 #define STRUCT_HANDLE(struct_type, handle) \ argument [all …]
|
H A D | tiuser.h | 198 extern char *t_alloc(int fildes, int struct_type, int fields); 204 extern int t_free(char *ptr, int struct_type);
|
/titanic_50/usr/src/uts/common/avs/ns/ |
H A D | model.h | 96 #define STRUCT_HANDLE(struct_type, handle) \ argument 99 struct struct_type##32 *m32; \ 100 struct struct_type *m64; \ 105 #define STRUCT_DECL(struct_type, handle) \ argument 106 struct struct_type __##handle##_buf; \ 107 STRUCT_HANDLE(struct_type, handle) 160 #define SIZEOF_STRUCT(struct_type, umodel) \ argument 162 sizeof (struct struct_type##32) : \ 163 sizeof (struct struct_type)) 167 #define STRUCT_HANDLE(struct_type, handle) \ argument [all …]
|
/titanic_50/usr/src/lib/libnsl/nsl/ |
H A D | tli_wrappers.c | 50 t_alloc(int fd, int struct_type, int fields) in t_alloc() argument 52 return (_tx_alloc(fd, struct_type, fields, TX_TLI_API)); in t_alloc() 84 t_free(char *ptr, int struct_type) in t_free() argument 86 return (_tx_free(ptr, struct_type, TX_TLI_API)); in t_free()
|
H A D | xti_wrappers.c | 70 _xti_alloc(int fd, int struct_type, int fields) in _xti_alloc() argument 72 return (_tx_alloc(fd, struct_type, fields, TX_XTI_API)); in _xti_alloc() 104 _xti_free(void *ptr, int struct_type) in _xti_free() argument 106 return (_tx_free(ptr, struct_type, TX_XTI_API)); in _xti_free()
|
H A D | t_free.c | 42 _tx_free(char *ptr, int struct_type, int api_semantics) in _tx_free() argument 58 switch (struct_type) { in _tx_free()
|
H A D | t_alloc.c | 52 _tx_alloc(int fd, int struct_type, int fields, int api_semantics) in _tx_alloc() argument 108 switch (struct_type) { in _tx_alloc() 255 (void) t_free(p.caddr, struct_type); in _tx_alloc()
|
/titanic_50/usr/src/cmd/rcm_daemon/common/ |
H A D | rcm_impl.h | 104 #define RCM_STRUCT_BASE_ADDR(struct_type, x, y) \ argument 105 ((struct_type *) ((void *)(((char *)(x)) - \ 106 (int)(&((struct_type *)0)->y))))
|
/titanic_50/usr/src/uts/common/ktli/ |
H A D | t_kfree.c | 67 t_kfree(TIUSER *tiptr, char *ptr, int struct_type) in t_kfree() argument 84 switch (struct_type) { in t_kfree()
|
H A D | t_kalloc.c | 69 t_kalloc(TIUSER *tiptr, int struct_type, int fields, char **ptr) in t_kalloc() argument 91 switch (struct_type) { in t_kalloc()
|