Lines Matching refs:line

55 	int line;  member
63 add_alloc(char *type, void *addr, size_t size, const char *file, int line) in add_alloc() argument
77 alist->line = line; in add_alloc()
89 drop_alloc(const char *type, void *addr, const char *file, int line) in drop_alloc() argument
110 type, addr, file, line); in drop_alloc()
117 my_malloc(size_t size, const char *file, int line) in my_malloc() argument
125 add_alloc("MALLOC", addr, size, file, line); in my_malloc()
131 my_realloc(void *addr, size_t size, const char *file, int line) in my_realloc() argument
139 drop_alloc("MALLOC", addr, file, line); in my_realloc()
140 add_alloc("MALLOC", ptr, size, file, line); in my_realloc()
147 my_free(void *addr, const char *file, int line) in my_free() argument
150 drop_alloc("MALLOC", addr, file, line); in my_free()
156 my_strdup(const char *straddr, const char *file, int line) in my_strdup() argument
166 add_alloc("STRDUP", addr, size, file, line); in my_strdup()
173 my_sethostent(int stay, const char *file, int line) in my_sethostent() argument
177 add_alloc("SETHOSTENT", NULL, 0, file, line); in my_sethostent()
183 my_endhostent(const char *file, int line) in my_endhostent() argument
191 drop_alloc("SETHOSTENT", NULL, file, line); in my_endhostent()
197 my_setnetconfig(const char *file, int line) in my_setnetconfig() argument
205 add_alloc("SETNETCONFIG", nconf, 0, file, line); in my_setnetconfig()
211 my_endnetconfig(void *nconf, const char *file, int line) in my_endnetconfig() argument
219 drop_alloc("SETNETCONFIG", nconf, file, line); in my_endnetconfig()
225 my_setnetpath(const char *file, int line) in my_setnetpath() argument
233 add_alloc("SETNETPATH", npath, 0, file, line); in my_setnetpath()
239 my_endnetpath(void *npath, const char *file, int line) in my_endnetpath() argument
247 drop_alloc("SETNETPATH", npath, file, line); in my_endnetpath()
258 int line) in my_netdir_getbyname() argument
266 add_alloc("NETDIR_GETBYNAME", *addrs, 0, file, line); in my_netdir_getbyname()
272 my_netdir_free(void *ptr, int type, const char *file, int line) in my_netdir_free() argument
276 drop_alloc("NETDIR_GETBYNAME", ptr, file, line); in my_netdir_free()
287 int line) in my_getipnodebyname() argument
295 add_alloc("GETIPNODEBYNAME", res, 0, file, line); in my_getipnodebyname()
301 my_freehostent(struct hostent *hent, char *file, int line) in my_freehostent() argument
305 drop_alloc("GETIPNODEBYNAME", hent, file, line); in my_freehostent()
310 my_getnetconfigent(char *netid, char *file, int line) in my_getnetconfigent() argument
318 add_alloc("GETNETCONFIGENT", res, 0, file, line); in my_getnetconfigent()
324 my_freenetconfigent(struct netconfig *netp, char *file, int line) in my_freenetconfigent() argument
328 drop_alloc("GETNETCONFIGENT", netp, file, line); in my_freenetconfigent()
333 my__rpc_setconf(char *nettype, char *file, int line) in my__rpc_setconf() argument
341 add_alloc("RPC_SETCONF", res, 0, file, line); in my__rpc_setconf()
347 my__rpc_endconf(void *vhandle, char *file, int line) in my__rpc_endconf() argument
351 drop_alloc("RPC_SETCONF", vhandle, file, line); in my__rpc_endconf()
382 alist->file, alist->line); in check_leaks()