/frameworks/compile/libbcc/tools/abcc/ |
Main.cpp | 34 fprintf(stderr, "usage: abcc [--fd output_fd|--file output_filename]\n" 126 static bool Build(int input_fd, int output_fd, 136 bool build_result = driver->build(input_fd, output_fd);; 145 int output_fd, input_fd; local 147 if (!GetIntArg(output, output_fd)) { 157 if (!Build(input_fd, output_fd, triple, sysroot)) { 167 int output_fd = -1, input_fd = -1; local 170 output_fd = ::open(output, O_RDWR | O_CREAT | O_TRUNC, 0755); 172 if (output_fd < 0) { 182 ::close(output_fd); [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer.cc | 102 ExternalSymbolizer(const char *path, int input_fd, int output_fd) 105 output_fd_(output_fd), 309 int input_fd, output_fd; local 310 if (!StartSymbolizerSubprocess(path_to_symbolizer, &input_fd, &output_fd)) 314 input_fd, output_fd);
|
/frameworks/av/services/audioflinger/ |
test-resample.cpp | 258 int output_fd = open(file_out, O_WRONLY | O_CREAT | O_TRUNC, local 260 if (output_fd < 0) { 267 write(output_fd, &wav, sizeof(wav)); 270 write(output_fd, convert, out_frames * channels * sizeof(int16_t)); 271 close(output_fd);
|
/external/linux-tools-perf/util/ |
trace-event-info.c | 72 static int output_fd; variable 181 ret = write(output_fd, buf, len); 526 output_fd = fd;
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
execute.c | 808 int input_fd, output_fd; 812 output_fd = fileno (output_file.fp); 814 input->out_file_name, output_fd, 817 if (fchown (output_fd, input->st.st_uid, input->st.st_gid) == -1) 818 fchown (output_fd, -1, input->st.st_gid); 803 int input_fd, output_fd; local [all...] |