Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/ctypes/test/
Dtest_slicing.py70 dll.my_strdup.restype = POINTER(c_char)
72 res = dll.my_strdup(s)
96 dll.my_strdup.restype = POINTER(c_byte)
97 res = dll.my_strdup(s)
115 dll.my_strdup.restype = allocated_c_char_p
116 dll.my_strdup.errcheck = errcheck
118 res = dll.my_strdup(s)
121 del dll.my_strdup.errcheck
/external/selinux/libsemanage/src/
Dconf-scan.l27 static char *my_strdup (char * s);
71 <arg>.*[^\"\n] BEGIN INITIAL; semanage_lval.s = my_strdup(semanage_text); return ARG;
78 static char *my_strdup(char *s) {
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c175 EXPORT(char *) my_strdup(char *src) in my_strdup() function