OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OutFile
(Results
1 - 4
of
4
) sorted by null
/external/llvm/runtime/libprofile/
CommonProfiling.c
86
static int
OutFile
= -1;
91
if (
OutFile
== -1) {
92
OutFile
= open(OutputFilename, O_CREAT | O_WRONLY, 0666);
93
lseek(
OutFile
, 0, SEEK_END); /* O_APPEND prevents seeking */
94
if (
OutFile
== -1) {
98
return(
OutFile
);
105
if (write(
OutFile
, &PTy, sizeof(int)) < 0 ||
106
write(
OutFile
, &SavedArgsLength, sizeof(unsigned)) < 0 ||
107
write(
OutFile
, SavedArgs, SavedArgsLength) < 0 ) {
113
if (write(
OutFile
, &Zeros, 4-(SavedArgsLength&3)) < 0)
[
all
...]
/external/clang/lib/Frontend/
CompilerInstance.cpp
413
void CompilerInstance::addOutputFile(const OutputFile &
OutFile
) {
414
assert(
OutFile
.OS && "Attempt to add empty stream to output list!");
415
OutputFiles.push_back(
OutFile
);
493
std::string
OutFile
, TempFile;
495
OutFile
= OutputPath;
497
OutFile
= "-";
502
OutFile
= Path.str();
504
OutFile
= "-";
510
if (UseTemporary &&
OutFile
!= "-") {
511
llvm::sys::Path OutPath(
OutFile
);
[
all
...]
/external/llvm/lib/CodeGen/
MachineVerifier.cpp
242
raw_ostream *
OutFile
= 0;
245
OutFile
= new raw_fd_ostream(OutFileName, ErrorInfo,
252
OS =
OutFile
;
298
if (
OutFile
)
299
delete
OutFile
;
[
all
...]
/external/clang/lib/Rewrite/
RewriteObjC.cpp
116
raw_ostream*
OutFile
;
528
: Diags(D), LangOpts(LOpts), InFileName(inFile),
OutFile
(OS),
[
all
...]
Completed in 487 milliseconds