Searched refs:sti (Results 1 – 1 of 1) sorted by relevance
40 stinfo *sti = x; in service_bootstrap_func() local41 sti->func(sti->fd, sti->cookie); in service_bootstrap_func()42 free(sti); in service_bootstrap_func()120 stinfo *sti; in create_service_thread() local129 sti = malloc(sizeof(stinfo)); in create_service_thread()130 if(sti == 0) fatal("cannot allocate stinfo"); in create_service_thread()131 sti->func = func; in create_service_thread()132 sti->cookie = cookie; in create_service_thread()133 sti->fd = s[1]; in create_service_thread()135 if(adb_thread_create( &t, service_bootstrap_func, sti)){ in create_service_thread()[all …]