Home
last modified time | relevance | path

Searched refs:sti (Results 1 – 1 of 1) sorted by relevance

/system/core/adb/
Dservices.c52 stinfo *sti = x; in service_bootstrap_func() local
53 sti->func(sti->fd, sti->cookie); in service_bootstrap_func()
54 free(sti); in service_bootstrap_func()
159 stinfo *sti; in create_service_thread() local
168 sti = malloc(sizeof(stinfo)); in create_service_thread()
169 if(sti == 0) fatal("cannot allocate stinfo"); in create_service_thread()
170 sti->func = func; in create_service_thread()
171 sti->cookie = cookie; in create_service_thread()
172 sti->fd = s[1]; in create_service_thread()
174 if(adb_thread_create( &t, service_bootstrap_func, sti)){ in create_service_thread()
[all …]