Home | History | Annotate | Download | only in minadbd

Lines Matching defs:sti

40     stinfo *sti = x;
41 sti->func(sti->fd, sti->cookie);
42 free(sti);
120 stinfo *sti;
129 sti = malloc(sizeof(stinfo));
130 if(sti == 0) fatal("cannot allocate stinfo");
131 sti->func = func;
132 sti->cookie = cookie;
133 sti->fd = s[1];
135 if(adb_thread_create( &t, service_bootstrap_func, sti)){
136 free(sti);