Searched refs:outFile (Results 26 - 50 of 56) sorted by relevance

123

/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclCkalloc.c172 FILE *outFile)
174 fprintf(outFile,"total mallocs %10d\n",
176 fprintf(outFile,"total frees %10d\n",
178 fprintf(outFile,"current packets allocated %10d\n",
180 fprintf(outFile,"current bytes allocated %10lu\n",
182 fprintf(outFile,"maximum packets allocated %10d\n",
184 fprintf(outFile,"maximum bytes allocated %10lu\n",
1275 FILE *outFile)
169 TclDumpMemoryInfo( FILE *outFile) argument
1254 TclDumpMemoryInfo( FILE *outFile) argument
H A DtclIntDecls.h124 EXTERN void TclDumpMemoryInfo(FILE *outFile);
1037 EXTERN void TclDbDumpActiveObjects(FILE *outFile);
1058 void (*tclDumpMemoryInfo) (FILE *outFile); /* 14 */
1287 void (*tclDbDumpActiveObjects) (FILE *outFile); /* 243 */
H A DtclObj.c1040 FILE *outFile)
1051 fprintf(outFile, "total objects: %d\n", tablePtr->numEntries);
1057 fprintf(outFile,
1062 fprintf(outFile, "key = 0x%p\n",
1022 TclDbDumpActiveObjects( FILE *outFile) argument
H A DtclCompile.h943 MODULE_SCOPE void TclPrintObject(FILE *outFile,
945 MODULE_SCOPE void TclPrintSource(FILE *outFile,
/macosx-10.10/Security-57031.1.35/SecurityTool/
H A Dkeychain_export.c311 char *outFile = NULL; local
328 outFile = optarg;
435 passphrase, doPem, outFile);
H A Dcmsutil.c1064 FILE *outFile; local
1090 outFile = stdout;
1261 outFile = fopen(optarg, "wb");
1262 if (outFile == NULL)
1396 cmsg = decode(outFile, &output, &input, &decodeOptions);
1402 fwrite(output.Data, output.Length, 1, outFile);
1422 encryptOptions.outfile = outFile;
1536 fwrite(output.Data, output.Length, 1, outFile);
1546 if (outFile != stdout)
1547 fclose(outFile);
[all...]
/macosx-10.10/mDNSResponder-561.1.1/mDNSPosix/
H A Dparselog.py175 outFile = "%s.pdf" % (".".join(inFile.split('.')[:-1]))
176 c = CGPDFContextCreateWithFilename (outFile, pageRect)
177 print "Writing " + outFile
/macosx-10.10/security_ocspd-55124/server/
H A DocspdNetwork.cpp961 int rtn = writeFile(fetchParams->outFile, fetchParams->fetched.Data,
964 ocspdErrorLog("Error %d writing %s\n", rtn, fetchParams->outFile);
968 fetchParams->fetched.Length, fetchParams->outFile);
970 if(chmod(fetchParams->outFile, 0644)) {
972 errno, fetchParams->outFile);
1006 if(params->outFile) {
1008 params->outFile, kCFStringEncodingUTF8);
1124 if(params->outFile) {
1125 free(params->outFile);
H A DocspdNetwork.mm947 int rtn = writeFile(fetchParams->outFile, fetchParams->fetched.Data,
950 ocspdErrorLog("Error %d writing %s\n", rtn, fetchParams->outFile);
954 fetchParams->fetched.Length, fetchParams->outFile);
956 if(chmod(fetchParams->outFile, 0644)) {
958 errno, fetchParams->outFile);
992 if(params->outFile) {
994 params->outFile, kCFStringEncodingUTF8);
1110 if(params->outFile) {
1111 free(params->outFile);
H A DocspdServer.cpp1011 fetchParams->outFile = crlGenerateFileName(dataPtr, dataLen, gCrlPath, ".crl");
1054 if(fetchParams->outFile) {
1055 free(fetchParams->outFile);
/macosx-10.10/llvmCore-3425.0.34/tools/bugpoint/
H A DExecutionDriver.cpp362 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
363 outFile << "exit " << RetVal << '\n';
364 outFile.close();
H A DToolRunner.cpp777 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
778 outFile << *Error << '\n';
779 outFile.close();
/macosx-10.10/Security-57031.1.35/Security/include/security_filedb/
H A DAtomicFile.h72 static void pathSplit(const std::string &inFull, std::string &outDir, std::string &outFile);
H A DAtomicFile.cpp212 AtomicFile::pathSplit(const std::string &inFull, std::string &outDir, std::string &outFile) argument
219 outFile = inFull;
224 outFile = "";
229 outFile = inFull.substr(slash + 1, len);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DAtomicFile.h72 static void pathSplit(const std::string &inFull, std::string &outDir, std::string &outFile);
H A DAtomicFile.cpp212 AtomicFile::pathSplit(const std::string &inFull, std::string &outDir, std::string &outFile) argument
219 outFile = inFull;
224 outFile = "";
229 outFile = inFull.substr(slash + 1, len);
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/sshKey/
H A DsshKey.cpp28 printf(" -o outFile\n");
1267 char *outFile = NULL; local
1288 outFile = optarg;
1403 if(outFile) {
1441 if(writeFile(outFile, outKey, outKeyLen)) {
1442 printf("***Error writing to %s.\n", outFile);
1446 printf("...wrote %u bytes to %s.\n", outKeyLen, outFile);
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclCompile.c3947 TclPrintObject(outFile, objPtr, maxChars)
3948 FILE *outFile; /* The file to print the source to. */
3957 TclPrintSource(outFile, bytes, TclMin(length, maxChars));
3980 TclPrintSource(outFile, string, maxChars)
3981 FILE *outFile; /* The file to print the source to. */
3989 fprintf(outFile, "\"\"");
3993 fprintf(outFile, "\"");
3998 fprintf(outFile, "\\\"");
4001 fprintf(outFile, "\\f");
4004 fprintf(outFile, "\\
[all...]
H A DtclCompile.h869 EXTERN void TclPrintObject _ANSI_ARGS_((FILE *outFile,
871 EXTERN void TclPrintSource _ANSI_ARGS_((FILE *outFile,
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v7.6/
H A DtclIO.c380 TclFindFileChannel(inFile, outFile, fileUsedPtr)
381 Tcl_File inFile, outFile; /* Channel has these Tcl_Files. */
396 if ((chanIn == inFile) && (chanOut == outFile)) {
403 if ((outFile != (Tcl_File) NULL) && (chanOut == outFile)) {
1707 Tcl_File outFile; /* The contained Tcl_File for output
1806 outFile = Tcl_GetChannelFile((Tcl_Channel) chanPtr,
1808 if (outFile == (Tcl_File) NULL) {
1812 Tcl_CreateFileHandler(outFile, TCL_WRITABLE,
1877 outFile
1684 Tcl_File outFile; /* The contained Tcl_File for output local
3333 Tcl_File outFile; /* Used to cancel async flushes for local
4056 Tcl_File outFile; /* Used to cancel async flush. */ local
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v7.6p2/
H A DtclIO.c380 TclFindFileChannel(inFile, outFile, fileUsedPtr)
381 Tcl_File inFile, outFile; /* Channel has these Tcl_Files. */
396 if ((chanIn == inFile) && (chanOut == outFile)) {
403 if ((outFile != (Tcl_File) NULL) && (chanOut == outFile)) {
1721 Tcl_File outFile; /* The contained Tcl_File for output
1820 outFile = Tcl_GetChannelFile((Tcl_Channel) chanPtr,
1822 if (outFile == (Tcl_File) NULL) {
1826 Tcl_CreateFileHandler(outFile, TCL_WRITABLE,
1891 outFile
1698 Tcl_File outFile; /* The contained Tcl_File for output local
3347 Tcl_File outFile; /* Used to cancel async flushes for local
4070 Tcl_File outFile; /* Used to cancel async flush. */ local
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.0a1/
H A DtclIO.c380 TclFindFileChannel(inFile, outFile, fileUsedPtr)
381 Tcl_File inFile, outFile; /* Channel has these Tcl_Files. */
396 if ((chanIn == inFile) && (chanOut == outFile)) {
403 if ((outFile != (Tcl_File) NULL) && (chanOut == outFile)) {
1732 Tcl_File outFile; /* The contained Tcl_File for output
1831 outFile = Tcl_GetChannelFile((Tcl_Channel) chanPtr,
1833 if (outFile == (Tcl_File) NULL) {
1837 Tcl_CreateFileHandler(outFile, TCL_WRITABLE,
1902 outFile
1709 Tcl_File outFile; /* The contained Tcl_File for output local
3449 Tcl_File outFile; /* Used to cancel async flushes for local
4172 Tcl_File outFile; /* Used to cancel async flush. */ local
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.0a2/
H A DtclIO.c380 TclFindFileChannel(inFile, outFile, fileUsedPtr)
381 Tcl_File inFile, outFile; /* Channel has these Tcl_Files. */
396 if ((chanIn == inFile) && (chanOut == outFile)) {
403 if ((outFile != (Tcl_File) NULL) && (chanOut == outFile)) {
1732 Tcl_File outFile; /* The contained Tcl_File for output
1831 outFile = Tcl_GetChannelFile((Tcl_Channel) chanPtr,
1833 if (outFile == (Tcl_File) NULL) {
1837 Tcl_CreateFileHandler(outFile, TCL_WRITABLE,
1902 outFile
1709 Tcl_File outFile; /* The contained Tcl_File for output local
3449 Tcl_File outFile; /* Used to cancel async flushes for local
4172 Tcl_File outFile; /* Used to cancel async flush. */ local
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/p12/
H A Dp12Parse.cpp188 const char *outFile,
224 if(writeFile(outFile, toWrite.Data, toWrite.Length)) {
225 printf("***Error writing to %s\n", outFile);
230 (unsigned)toWrite.Length, outFile);
186 writeAuthSafeContent( const CSSM_DATA &rawBlob, const char *outFile, SecNssCoder &coder, OidParser &parser) argument
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/p12Parse/
H A Dp12Parse.cpp191 const char *outFile,
227 if(writeFile(outFile, toWrite.Data, toWrite.Length)) {
228 printf("***Error writing to %s\n", outFile);
233 (unsigned)toWrite.Length, outFile);
189 writeAuthSafeContent( const CSSM_DATA &rawBlob, const char *outFile, SecNssCoder &coder, OidParser &parser) argument

Completed in 232 milliseconds

123