OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hist_name
(Results
1 - 3
of
3
) sorted by null
/external/iproute2/misc/
rtacct.c
438
char
hist_name
[128];
local
538
snprintf(
hist_name
, sizeof(
hist_name
), getenv("RTACCT_HISTORY"));
540
sprintf(
hist_name
, "/tmp/.rtacct.u%d", getuid());
543
unlink(
hist_name
);
548
fd = open(
hist_name
, O_RDWR|O_CREAT|O_NOFOLLOW, 0600);
ifstat.c
590
char
hist_name
[128];
local
680
snprintf(
hist_name
, sizeof(
hist_name
), getenv("IFSTAT_HISTORY"));
682
sprintf(
hist_name
, "%s/.ifstat.u%d", P_tmpdir, getuid());
685
unlink(
hist_name
);
690
fd = open(
hist_name
, O_RDWR|O_CREAT|O_NOFOLLOW, 0600);
nstat.c
448
char *
hist_name
;
local
529
if ((
hist_name
= getenv("NSTAT_HISTORY")) == NULL) {
530
hist_name
= malloc(128);
531
sprintf(
hist_name
, "/tmp/.nstat.u%d", getuid());
535
unlink(
hist_name
);
540
fd = open(
hist_name
, O_RDWR|O_CREAT|O_NOFOLLOW, 0600);
Completed in 130 milliseconds