/external/ltrace/ |
value.h | 59 int own_type; member in struct:value 65 * OWN_TYPE, the passed-in type is owned and released by value. */ 68 int own_type); 75 struct arg_type_info *type, int own_type); 78 * and released if OWN_TYPE. */ 80 struct arg_type_info *type, int own_type); 84 * there was one. Previous ownership is passed in OWN_TYPE. */ 86 struct arg_type_info **type, int *own_type); 95 * frees the value type, if it's own_type. It doesn't free the VAL
|
value.c | 34 int own_type) 37 valp->own_type = own_type; 47 struct arg_type_info *type, int own_type) 50 value_common_init(valp, inferior, parent, type, own_type); 55 struct arg_type_info *type, int own_type) 57 value_common_init(valp, NULL, parent, type, own_type); 61 value_set_type(struct value *value, struct arg_type_info *type, int own_type) 63 if (value->own_type) { 68 value->own_type = own_type [all...] |
param.c | 34 param->u.type.own_type = own; 122 if (param->u.type.own_type) {
|
param.h | 77 int own_type; member in struct:param::__anon19859::__anon19860 99 * PARAM if OWN_TYPE. */ 101 struct arg_type_info *type, int own_type);
|
prototype.h | 74 int own_type : 1; member in struct:named_type 77 /* Initialize a named type INFO, which, if OWN_TYPE, is destroyed when 80 struct arg_type_info *info, int own_type);
|
prototype.c | 120 struct arg_type_info *info, int own_type) 123 named->own_type = own_type; 130 if (named->own_type) {
|
expr.c | 68 struct arg_type_info *type, int own_type) 71 value_init_detached(&val, NULL, type, own_type);
|
expr.h | 93 struct arg_type_info *type, int own_type);
|
read_config_file.c | 474 assert(this_nt.own_type);
|