Home
last modified time | relevance | path

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

/external/qemu/
Dcpus.c468 CPUState *penv = first_cpu; in all_vcpus_paused() local
470 while (penv) { in all_vcpus_paused()
471 if (!penv->stopped) in all_vcpus_paused()
473 penv = (CPUState *)penv->next_cpu; in all_vcpus_paused()
481 CPUState *penv = first_cpu; in pause_all_vcpus() local
483 while (penv) { in pause_all_vcpus()
484 penv->stop = 1; in pause_all_vcpus()
485 qemu_thread_signal(penv->thread, SIGUSR1); in pause_all_vcpus()
486 qemu_cpu_kick(penv); in pause_all_vcpus()
487 penv = (CPUState *)penv->next_cpu; in pause_all_vcpus()
[all …]
Denvlist.c230 char **env, **penv; in envlist_to_environ() local
232 penv = env = malloc((envlist->el_count + 1) * sizeof (char *)); in envlist_to_environ()
238 *(penv++) = strdup(entry->ev_var); in envlist_to_environ()
240 *penv = NULL; /* NULL terminate the list */ in envlist_to_environ()
Dexec.c580 CPUState **penv; in cpu_exec_init() local
587 penv = &first_cpu; in cpu_exec_init()
589 while (*penv != NULL) { in cpu_exec_init()
590 penv = &(*penv)->next_cpu; in cpu_exec_init()
597 *penv = env; in cpu_exec_init()
/external/libpng/contrib/visupng/
Dcexcept.h198 jmp_buf *penv; \
209 #define init_exception_context(ec) ((void)((ec)->penv = 0))
214 exception__prev = the_exception_context->penv; \
215 the_exception_context->penv = &exception__env; \
226 the_exception_context->penv = exception__prev; \
244 for (;; longjmp(*the_exception_context->penv, 1)) \