Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dparsermodule.c814 char *strn = 0; in build_node_children() local
902 strn = (char *)PyObject_MALLOC(len + 1); in build_node_children()
903 if (strn == NULL) { in build_node_children()
909 (void) memcpy(strn, temp_str, len + 1); in build_node_children()
923 err = PyNode_AddChild(root, type, strn, *line_num, 0); in build_node_children()
926 PyObject_FREE(strn); in build_node_children()
932 PyObject_FREE(strn); in build_node_children()
/external/strace/
Dnlattr.h98 DECL_NLA(strn);
/external/curl/lib/
Dtftp.c1156 size_t strn = state->rbytes - 4; in tftp_receive_packet() local
1158 if(Curl_strnlen(str, strn) < strn) in tftp_receive_packet()
/external/python/cpython2/Modules/
Dparsermodule.c751 char *strn = 0; in build_node_children() local
819 strn = (char *)PyObject_MALLOC(len); in build_node_children()
820 if (strn == NULL) { in build_node_children()
826 (void) memcpy(strn, PyString_AS_STRING(temp), len); in build_node_children()
840 err = PyNode_AddChild(root, type, strn, *line_num, 0); in build_node_children()
843 PyObject_FREE(strn); in build_node_children()
849 PyObject_FREE(strn); in build_node_children()