Lines Matching refs:result
40 char **result;
50 result = (char**) calloc(argc + 1, sizeof(char*));
52 if (result == NULL) {
87 result[i] = strdup(str);
93 if (result[i] == NULL) {
99 result[argc] = NULL;
100 return result;
105 * after the last strdup'd entry in result.
108 free(result[j]);
109 free(result);
128 PyObject *result = PyObject_CallFunctionObjArgs(payload->fn,
131 if (!result) {
135 if (PyLong_Check(result))
136 return (int)PyLong_AsLong(result);