Searched defs:output_fd (Results 1 - 1 of 1) sorted by relevance

/frameworks/compile/libbcc/tools/abcc/
H A DMain.cpp34 fprintf(stderr, "usage: abcc [--fd output_fd|--file output_filename]\n"
121 static bool Build(int input_fd, int output_fd, argument
131 bool build_result = driver->build(input_fd, output_fd);;
140 int output_fd, input_fd; local
142 if (!GetIntArg(output, output_fd)) {
152 if (!Build(input_fd, output_fd, triple, sysroot)) {
162 int output_fd = -1, input_fd = -1; local
165 output_fd = ::open(output, O_RDWR | O_CREAT | O_TRUNC, 0755);
167 if (output_fd < 0) {
177 ::close(output_fd);
[all...]

Completed in 27 milliseconds