Home | History | Annotate | Download | only in gen

Lines Matching defs:data

25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
47 void *data;
50 data = NULL;
53 if (sysctl(oids, (u_int)oidlen, data, len, NULL, 0) == 0) {
55 free(data);
58 if (data != NULL)
59 return data;
62 free(data);
68 data = malloc(*len);
69 if (data == NULL) {