Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_cursesmodule.c2918 char *key_n2; in init_curses() local
2925 key_n2 = malloc(strlen(key_n)+1); in init_curses()
2926 if (!key_n2) { in init_curses()
2931 p2 = key_n2; in init_curses()
2941 key_n2 = key_n; in init_curses()
2942 SetDictInt(key_n2,key); in init_curses()
2943 if (key_n2 != key_n) in init_curses()
2944 free(key_n2); in init_curses()
/external/python/cpython3/Modules/
D_cursesmodule.c3468 char *key_n2; in PyInit__curses() local
3475 key_n2 = PyMem_Malloc(strlen(key_n)+1); in PyInit__curses()
3476 if (!key_n2) { in PyInit__curses()
3481 p2 = key_n2; in PyInit__curses()
3491 key_n2 = key_n; in PyInit__curses()
3492 SetDictInt(key_n2,key); in PyInit__curses()
3493 if (key_n2 != key_n) in PyInit__curses()
3494 PyMem_Free(key_n2); in PyInit__curses()