Home | History | Annotate | Download | only in adb

Lines Matching refs:sti

52     stinfo *sti = x;
53 sti->func(sti->fd, sti->cookie);
54 free(sti);
157 stinfo *sti;
166 sti = malloc(sizeof(stinfo));
167 if(sti == 0) fatal("cannot allocate stinfo");
168 sti->func = func;
169 sti->cookie = cookie;
170 sti->fd = s[1];
172 if(adb_thread_create( &t, service_bootstrap_func, sti)){
173 free(sti);
299 stinfo *sti;
310 sti = malloc(sizeof(stinfo));
311 if(sti == 0) fatal("cannot allocate stinfo");
312 sti->func = subproc_waiter_service;
313 sti->cookie = (void*)pid;
314 sti->fd = ret_fd;
316 if(adb_thread_create( &t, service_bootstrap_func, sti)){
317 free(sti);