Searched defs:file (Results 251 - 275 of 1433) sorted by relevance

<<11121314151617181920>>

/external/boringssl/src/crypto/x509/
H A Dby_file.c73 "Load file into cache",
94 char *file; local
101 file = (char *)getenv(X509_get_default_cert_file_env());
102 if (file)
103 ok = (X509_load_cert_crl_file(ctx,file,
128 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type) argument
135 if (file == NULL) return(1);
138 if ((in == NULL) || (BIO_read_filename(in,file) <= 0))
194 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type) argument
201 if (file
260 X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type) argument
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DTrialOutputLogger.java5 * you may not use this file except in compliance with the License.
33 * A logger to write trial output to a file.
37 private File file; field in class:TrialOutputLogger
55 /** Opens the trial output file. */
59 file = fileAndWriter.file;
72 /** Prints header information to the file. */
75 // make the file self describing
102 /** Marks the log file so that it will not be deleted at the end of the benchmark. */
105 outputManager.persistFile(file);
[all...]
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.h5 |* This file is distributed under the University of Illinois Open Source *|
66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
68 CXFile *file,
74 CXFile file; member in struct:clang::CXLoadedDiagnostic::Location
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cc5 // This file is distributed under the University of Illinois Open Source
10 // This file is shared between sanitizers' run-time libraries.
66 buffer->append("%s", StripPathPrefix(info.file, strip_path_prefix));
76 // Function name and offset, if file is unknown.
80 if (!info.file && info.function_offset != AddressInfo::kUnknown)
86 RenderSourceLocation(buffer, info.file, info.line, info.column, vs_style,
91 if (info.file) {
92 RenderSourceLocation(buffer, info.file, info.line, info.column,
119 void RenderSourceLocation(InternalScopedString *buffer, const char *file, argument
123 buffer->append("%s(%d", StripPathPrefix(file, strip_path_prefi
[all...]
/external/curl/docs/examples/
H A Dopensslthreadlock.c10 * This software is licensed as described in the file COPYING, which
16 * furnished to do so, under the terms of the COPYING file.
44 void handle_error(const char *file, int lineno, const char *msg){ argument
45 fprintf(stderr, "** %s:%d %s\n", file, lineno, msg);
54 static void locking_function(int mode, int n, const char * file, int line) argument
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkDefs.cpp8 * you may not use this file except in compliance with the License.
20 * \file
43 Error::Error (VkResult error, const char* message, const char* expr, const char* file, int line) argument
44 : tcu::TestError (message, expr, file, line)
59 OutOfMemoryError::OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line) argument
60 : tcu::ResourceError(message, expr, file, line)
77 void checkResult (VkResult result, const char* msg, const char* file, int line) argument
88 throw OutOfMemoryError(result, msgStr.str().c_str(), DE_NULL, file, line);
90 throw Error(result, msgStr.str().c_str(), DE_NULL, file, line);
/external/deqp/framework/common/
H A DtcuDefs.cpp8 * you may not use this file except in compliance with the License.
20 * \file
50 static std::string formatError (const char* message, const char* expr, const char* file, int line) argument
58 if (file)
59 msg << " at " << de::FilePath(file).getBaseName() << ":" << line;
64 Exception::Exception (const char* message, const char* expr, const char* file, int line) argument
65 : std::runtime_error(formatError(message, expr, file, line))
76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result) argument
77 : Exception (formatError(message, expr, file, line))
88 TestError::TestError (const char* message, const char* expr, const char* file, in argument
98 InternalError(const char* message, const char* expr, const char* file, int line) argument
108 ResourceError(const char* message, const char* expr, const char* file, int line) argument
118 NotSupportedError(const char* message, const char* expr, const char* file, int line) argument
[all...]
/external/deqp/framework/egl/
H A DegluDefs.cpp8 * you may not use this file except in compliance with the License.
20 * \file
39 void checkError (deUint32 err, const char* message, const char* file, int line) argument
49 throw BadAllocError(desc.str().c_str(), DE_NULL, file, line);
51 throw Error(err, desc.str().c_str(), DE_NULL, file, line);
61 Error::Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line) argument
62 : tcu::TestError (message, expr, file, line)
72 BadAllocError::BadAllocError (const char* message, const char* expr, const char* file, int line) argument
73 : tcu::ResourceError(message, expr, file, line)
/external/deqp/framework/opengl/
H A DgluDefs.cpp8 * you may not use this file except in compliance with the License.
20 * \file
35 Error::Error (int error, const char* message, const char* expr, const char* file, int line) argument
36 : tcu::TestError (message, expr, file, line)
51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int line) argument
52 : tcu::ResourceError(message, expr, file, line)
65 void checkError (const RenderContext& context, const char* msg, const char* file, int line) argument
67 checkError(context.getFunctions().getError(), msg, file, line);
70 void checkError (deUint32 err, const char* msg, const char* file, int line) argument
81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, lin
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoConstants.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
130 * Sets the current file that that line numbers refer to. All subsequent
131 * line number entries make reference to this source file name, instead
137 * file name.
H A DStatistics.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Statistics about the contents of a file.
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java5 * you may not use this file except in compliance with the License.
96 * dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/{NAME}", ...], nativeLibraryDirectories=[...]]]
176 boolean fileOrDirExists(File file) { argument
177 return file.exists();
180 boolean isWriteableDirectory(File file) { argument
181 return file.isDirectory() && file.canWrite();
/external/dhcpcd-6.8.2/
H A Ddev.c87 char file[PATH_MAX]; local
93 snprintf(file, sizeof(file), DEVDIR "/%s", name);
94 h = dlopen(file, RTLD_LAZY);
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java5 * you may not use this file except in compliance with the License.
22 public SourcePositionInfo(String file, int line, int column) { argument
23 this.file = file;
29 this.file = that.file;
53 return new SourcePositionInfo(that.file, line, 0);
69 return new SourcePositionInfo(that.file, line, 0);
74 return file + ':' + line;
79 int r = this.file
100 public String file; field in class:SourcePositionInfo
[all...]
/external/e2fsprogs/debugfs/
H A Dzap.c4 * Copyright (C) 2012 Theodore Ts'o. This file may be redistributed
34 char *file = NULL; local
49 file = optarg;
115 com_err(0, 0, "Usage:\tzap_block [-f file] [-o offset] "
117 com_err(0, 0, "\tzap_block [-f file] [-b bit] "
126 if (file) {
127 inode = string_to_inode(file);
175 char *file = NULL; local
187 file = optarg;
205 if (file) {
[all...]
/external/e2fsprogs/lib/blkid/
H A Dsave.c8 * This file may be redistributed under the terms of the
29 static int save_dev(blkid_dev dev, FILE *file) argument
40 fprintf(file,
44 fprintf(file, " PRI=\"%d\"", dev->bid_pri);
47 fprintf(file, " %s=\"%s\"", tag->bit_name,tag->bit_val);
49 fprintf(file, ">%s</device>\n", dev->bid_name);
55 * Write out the cache struct to the cache file on disk.
63 FILE *file = NULL; local
72 DBG(DEBUG_SAVE, printf("skipping cache file write\n"));
78 /* If we can't write to the cache file, the
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
H A Dparsecvs.php5 RCS file: /cvsroot/tools/org.eclipse.emf/.cvsignore,v //store
6 Working file: .cvsignore //don't need to store, basename(rcs file), minus ,v?
15 total revisions: 2; selected revisions: 2 //don't store, is count of commits to the file
31 $perfile_regex = "/^RCS\ file:\ (.+?$)\\n
32 ^Working\ file:\ (.+?$)\\n
63 $file = file_get_contents(($argv[1] ? $argv[1] : "php://stdin")); variable
67 preg_match_all("/^(RCS file:.+?^={77}$)/sm", $file, $regs) or die("Couldn't find any cvs logs!\n");
70 /* parse each file'
[all...]
/external/elfutils/libdwfl/
H A Ddwfl_module.c3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
48 free_file (struct dwfl_file *file) argument
50 free (file->name);
53 if (file->elf != NULL && elf_end (file->elf) == 0 && file->fd != -1)
54 close (file->fd);
/external/elfutils/tests/
H A Dlow_high_pc.c3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
38 const char *file; member in struct:args
46 printf("%s: [%" PRIx64 "] '%s' %s\n", args->file, off, name, msg);
101 a.file = dwarf_diename (a.cu);
/external/fonttools/MetaTools/
H A DbuildTableList.py32 file = open(os.path.join(tablesDir, "__init__.py"), "w") variable
34 file.write("# DON'T EDIT! This file is generated by MetaTools/buildTableList.py.\n")
35 file.write("def _moduleFinderHint():\n")
36 file.write('\t"""Dummy function to let modulefinder know what tables may be\n')
37 file.write('\tdynamically imported. Generated by MetaTools/buildTableList.py.\n')
38 file.write('\t"""\n')
40 file.write("\tfrom . import %s\n" % module)
42 file.close()
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DStreamFileDataLoadProvider.java1 package com.bumptech.glide.load.resource.file;
16 * cache file from {@link java.io.InputStream} data.
/external/google-benchmark/src/
H A Dcheck.h17 CheckHandler(const char* check, const char* file, const char* func, int line) argument
20 log_ << file << ":" << line << ": " << func << ": Check `"
/external/google-breakpad/src/processor/
H A Dlogging.cc55 const char *file, int line)
78 stream_ << time_string << ": " << PathnameStripper::File(file) << ":" <<
54 LogStream(std::ostream &stream, Severity severity, const char *file, int line) argument
/external/icu/icu4c/source/samples/csdet/
H A Dcsdet.c27 FILE *file; local
38 file = fopen(filename, "rb");
40 if (file == NULL) {
41 printf("Cannot open file \"%s\"\n\n", filename);
47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file);
49 fclose(file);
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCollectAPI.java29 CollectAPI(String file) { argument
30 _apidata = APIData.read(file, true);
244 System.out.println("No API file specified");

Completed in 1433 milliseconds

<<11121314151617181920>>