Lines Matching defs:data
40 Dtdata_t* data;
49 /* initialize all absolutely private data */
60 { /* if shared/persistent dictionary, get existing data */
61 data = NIL(Dtdata_t*);
62 if((e = (*disc->eventf)(dt,DT_OPEN,(Void_t*)(&data),disc)) < 0)
65 { if(data)
66 { if(data->type&meth->type)
87 /* allocate sharable data */
88 if(!(data = (Dtdata_t*)(dt->memoryf)(dt,NIL(Void_t*),sizeof(Dtdata_t),disc)) )
94 data->type = meth->type;
95 data->here = NIL(Dtlink_t*);
96 data->htab = NIL(Dtlink_t**);
97 data->ntab = data->size = data->loop = 0;
98 data->minp = 0;
101 dt->data = data;