Lines Matching refs:line

57 	int line;  member
65 add_alloc(char *type, void *addr, size_t size, const char *file, int line) in add_alloc() argument
79 alist->line = line; in add_alloc()
91 drop_alloc(const char *type, void *addr, const char *file, int line) in drop_alloc() argument
112 type, addr, file, line); in drop_alloc()
119 my_malloc(size_t size, const char *file, int line) in my_malloc() argument
127 add_alloc("MALLOC", addr, size, file, line); in my_malloc()
133 my_realloc(void *addr, size_t size, const char *file, int line) in my_realloc() argument
141 drop_alloc("MALLOC", addr, file, line); in my_realloc()
142 add_alloc("MALLOC", ptr, size, file, line); in my_realloc()
149 my_free(void *addr, const char *file, int line) in my_free() argument
152 drop_alloc("MALLOC", addr, file, line); in my_free()
158 my_strdup(const char *straddr, const char *file, int line) in my_strdup() argument
168 add_alloc("STRDUP", addr, size, file, line); in my_strdup()
175 my_sethostent(int stay, const char *file, int line) in my_sethostent() argument
179 add_alloc("SETHOSTENT", NULL, 0, file, line); in my_sethostent()
185 my_endhostent(const char *file, int line) in my_endhostent() argument
193 drop_alloc("SETHOSTENT", NULL, file, line); in my_endhostent()
199 my_setnetconfig(const char *file, int line) in my_setnetconfig() argument
207 add_alloc("SETNETCONFIG", nconf, 0, file, line); in my_setnetconfig()
213 my_endnetconfig(void *nconf, const char *file, int line) in my_endnetconfig() argument
221 drop_alloc("SETNETCONFIG", nconf, file, line); in my_endnetconfig()
227 my_setnetpath(const char *file, int line) in my_setnetpath() argument
235 add_alloc("SETNETPATH", npath, 0, file, line); in my_setnetpath()
241 my_endnetpath(void *npath, const char *file, int line) in my_endnetpath() argument
249 drop_alloc("SETNETPATH", npath, file, line); in my_endnetpath()
260 int line) in my_netdir_getbyname() argument
268 add_alloc("NETDIR_GETBYNAME", *addrs, 0, file, line); in my_netdir_getbyname()
274 my_netdir_free(void *ptr, int type, const char *file, int line) in my_netdir_free() argument
278 drop_alloc("NETDIR_GETBYNAME", ptr, file, line); in my_netdir_free()
289 int line) in my_getipnodebyname() argument
297 add_alloc("GETIPNODEBYNAME", res, 0, file, line); in my_getipnodebyname()
303 my_freehostent(struct hostent *hent, char *file, int line) in my_freehostent() argument
307 drop_alloc("GETIPNODEBYNAME", hent, file, line); in my_freehostent()
312 my_getnetconfigent(char *netid, char *file, int line) in my_getnetconfigent() argument
320 add_alloc("GETNETCONFIGENT", res, 0, file, line); in my_getnetconfigent()
326 my_freenetconfigent(struct netconfig *netp, char *file, int line) in my_freenetconfigent() argument
330 drop_alloc("GETNETCONFIGENT", netp, file, line); in my_freenetconfigent()
335 my__rpc_setconf(char *nettype, char *file, int line) in my__rpc_setconf() argument
343 add_alloc("RPC_SETCONF", res, 0, file, line); in my__rpc_setconf()
349 my__rpc_endconf(void *vhandle, char *file, int line) in my__rpc_endconf() argument
353 drop_alloc("RPC_SETCONF", vhandle, file, line); in my__rpc_endconf()
384 alist->file, alist->line); in check_leaks()