HomeSort by relevance Sort by last modified time
    Searched refs:interp_head (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pystate.c 47 static PyInterpreterState *interp_head = NULL; variable
89 interp->next = interp_head;
90 interp_head = interp;
134 for (p = &interp_head; ; p = &(*p)->next) {
432 return interp_head;
472 for (i = interp_head; i != NULL; i = i->next) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pystate.c 48 static PyInterpreterState *interp_head = NULL; variable
90 interp->next = interp_head;
91 interp_head = interp;
135 for (p = &interp_head; ; p = &(*p)->next) {
430 return interp_head;
470 for (i = interp_head; i != NULL; i = i->next) {
  /external/python/cpython2/Python/
pystate.c 47 static PyInterpreterState *interp_head = NULL; variable
89 interp->next = interp_head;
90 interp_head = interp;
134 for (p = &interp_head; ; p = &(*p)->next) {
432 return interp_head;
472 for (i = interp_head; i != NULL; i = i->next) {
  /external/python/cpython3/Python/
pystate.c 57 static PyInterpreterState *interp_head = NULL; variable
104 interp->next = interp_head;
105 interp_head = interp;
152 for (p = &interp_head; ; p = &(*p)->next) {
165 if (interp_head == NULL && head_mutex != NULL) {
623 return interp_head;
663 for (i = interp_head; i != NULL; i = i->next) {

Completed in 216 milliseconds