OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:trace_fd
(Results
1 - 2
of
2
) sorted by null
/external/ltp/testcases/kernel/sched/eas/
trace_parse.c
26
static int
trace_fd
= -1;
variable
387
if (
trace_fd
== -1) {
388
trace_fd
= open(TRACING_DIR "trace", O_RDONLY);
389
if (
trace_fd
== -1) {
400
rv = read(
trace_fd
, idx, bytes_to_read);
520
if (
trace_fd
>= 0) {
521
close(
trace_fd
);
522
trace_fd
= -1;
/external/wpa_supplicant_8/src/utils/
wpa_debug.c
130
int mounts,
trace_fd
;
local
170
trace_fd
= open(buf, O_WRONLY);
171
if (
trace_fd
< 0) {
175
wpa_debug_tracing_file = fdopen(
trace_fd
, "w");
177
close(
trace_fd
);
Completed in 873 milliseconds