OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:input_fd
(Results
1 - 3
of
3
) sorted by null
/external/vboot_reference/host/lib/
file_keys.c
63
int
input_fd
, len;
local
68
if( (
input_fd
= open(input_file, O_RDONLY)) == -1 ) {
73
while ( (len = read(
input_fd
, data, SHA1_BLOCK_SIZE)) ==
79
close(
input_fd
);
/external/selinux/libsemanage/src/
direct_api.c
680
int
input_fd
[2];
local
696
/* This is needed in case the read end of
input_fd
is closed causing a SIGPIPE signal to be sent.
704
retval = pipe(
input_fd
);
726
retval = dup2(
input_fd
[PIPE_READ], STDIN_FILENO);
742
retval = close(
input_fd
[PIPE_WRITE]);
763
retval = close(
input_fd
[PIPE_READ]);
764
input_fd
[PIPE_READ] = -1;
784
retval = write(
input_fd
[PIPE_WRITE], in_data, in_data_len);
789
retval = close(
input_fd
[PIPE_WRITE]);
790
input_fd
[PIPE_WRITE] = -1
[
all
...]
/frameworks/native/cmds/installd/
commands.cpp
691
static void run_patchoat(int
input_fd
, int oat_fd, const char* input_file_name,
704
/* input_file_name/
input_fd
should be the .odex/.oat file that is precompiled. I think*/
713
sprintf(input_oat_fd_arg, "--input-oat-fd=%d",
input_fd
);
715
PATCHOAT_BIN, instruction_set,
input_fd
, input_file_name, oat_fd, output_file_name);
[
all
...]
Completed in 416 milliseconds