Lines Matching refs:fstack
21 } *fstack; variable
97 ptr = realloc(fstack, sizeof(*fstack) * (cpu + 1)); in add_and_get_index()
103 fstack = ptr; in add_and_get_index()
107 memset(&fstack[i], 0, sizeof(fstack[i])); in add_and_get_index()
111 for (i = 0; i < fstack[cpu].size && fstack[cpu].stack[i]; i++) { in add_and_get_index()
112 if (strcmp(parent, fstack[cpu].stack[i]) == 0) { in add_and_get_index()
113 add_child(&fstack[cpu], child, i+1); in add_and_get_index()
119 add_child(&fstack[cpu], parent, 0); in add_and_get_index()
120 add_child(&fstack[cpu], child, 1); in add_and_get_index()
312 for (x = 0; x < fstack[i].size && fstack[i].stack[x]; x++) in TEP_PLUGIN_UNLOADER()
313 free(fstack[i].stack[x]); in TEP_PLUGIN_UNLOADER()
314 free(fstack[i].stack); in TEP_PLUGIN_UNLOADER()
319 free(fstack); in TEP_PLUGIN_UNLOADER()
320 fstack = NULL; in TEP_PLUGIN_UNLOADER()