Home | History | Annotate | Download | only in adb

Lines Matching refs:sti

49     stinfo *sti = x;
50 sti->func(sti->fd, sti->cookie);
51 free(sti);
244 stinfo *sti;
253 sti = malloc(sizeof(stinfo));
254 if(sti == 0) fatal("cannot allocate stinfo");
255 sti->func = func;
256 sti->cookie = cookie;
257 sti->fd = s[1];
259 if(adb_thread_create( &t, service_bootstrap_func, sti)){
260 free(sti);