Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Ddynload_aix.c39 register struct ld_info *ldiptr; in aix_getoldmodules() local
68 ldiptr = (struct ld_info *)ldibuf; in aix_getoldmodules()
71 if (strstr(progname, ldiptr->ldinfo_filename) == NULL && in aix_getoldmodules()
72 strstr(ldiptr->ldinfo_filename, "python") == NULL) { in aix_getoldmodules()
79 offset = (unsigned int)ldiptr->ldinfo_next; in aix_getoldmodules()
80 ldiptr = (struct ld_info *)((char*)ldiptr + offset); in aix_getoldmodules()
92 modptr->entry = ldiptr->ldinfo_dataorg; in aix_getoldmodules()
99 offset = (unsigned int)ldiptr->ldinfo_next; in aix_getoldmodules()
100 ldiptr = (struct ld_info *)((char*)ldiptr + offset); in aix_getoldmodules()
/external/python/cpython3/Python/
Ddynload_aix.c34 struct ld_info *ldiptr; in aix_getoldmodules() local
63 ldiptr = (struct ld_info *)ldibuf; in aix_getoldmodules()
66 if (strstr(progname, ldiptr->ldinfo_filename) == NULL && in aix_getoldmodules()
67 strstr(ldiptr->ldinfo_filename, "python") == NULL) { in aix_getoldmodules()
74 offset = (unsigned int)ldiptr->ldinfo_next; in aix_getoldmodules()
75 ldiptr = (struct ld_info *)((char*)ldiptr + offset); in aix_getoldmodules()
87 modptr->entry = ldiptr->ldinfo_dataorg; in aix_getoldmodules()
94 offset = (unsigned int)ldiptr->ldinfo_next; in aix_getoldmodules()
95 ldiptr = (struct ld_info *)((char*)ldiptr + offset); in aix_getoldmodules()