Searched defs:file (Results 226 - 250 of 1831) sorted by relevance

1234567891011>>

/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpsTransportSE.java21 private final String file; field in class:HttpsTransportSE
24 public HttpsTransportSE(String host, int port, String file, int timeout) { argument
25 super(HttpsTransportSE.PROTOCOL + "://" + host + ":" + port + file);
27 + host + ":" + port + file);
30 this.file = file;
41 serviceConnection = new HttpsServiceConnectionSE(host, port, file, timeout);
/external/libmtp/examples/
H A Demptyfolders.c2 * \file emptyfolders.c
31 // therefore, check every file for this parent_id
33 LIBMTP_file_t *file; local
34 file = files;
35 while (file != NULL) {
36 if(file->parent_id == folderlist->folder_id) { // folder has a child
40 file = file->next;
93 // Get file listing.
/external/libvpx/libvpx/
H A Dvideo_reader.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
23 FILE *file; member in struct:VpxVideoReaderStruct
32 FILE *const file = fopen(filename, "rb"); local
33 if (!file)
34 return NULL; // Can't open file
36 if (fread(header, 1, 32, file) != 32)
37 return NULL; // Can't read file header
49 reader->file
[all...]
H A Dvideo_writer.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
19 FILE *file; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info, argument
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
39 FILE *const file = fopen(filename, "wb"); local
40 if (!file)
49 writer->file = file;
[all...]
/external/lldb/include/lldb/Core/
H A DFileSpecList.h5 // This file is distributed under the University of Illinois Open Source
22 /// @brief A file collection class.
32 /// Initialize this object with an empty file list.
39 /// Initialize this object with a copy of the file list from \a rhs.
42 /// A const reference to another file list object.
54 /// Replace the file list in this object with the file list from
58 /// A file list object to copy.
69 /// Appends \a file to the end of the file lis
195 Insert(size_t idx, const FileSpec &file) argument
211 Replace(size_t idx, const FileSpec &file) argument
[all...]
/external/lldb/include/lldb/Symbol/
H A DLineEntry.h5 // This file is distributed under the University of Illinois Open Source
37 const FileSpec &file,
65 /// The compile unit object that contains the support file
66 /// list so the line entry can dump the file name (since this
67 /// object contains a file index into the support file list).
104 /// The compile unit object that contains the support file
105 /// list so the line entry can dump the file name (since this
106 /// object contains a file index into the support file lis
148 FileSpec file; member in struct:lldb_private::LineEntry
[all...]
/external/llvm/lib/Support/
H A DValgrind.cpp5 // This file is distributed under the University of Illinois Open Source
28 // want that to cause the rest of the code in this file to run the
62 LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line,
64 void AnnotateHappensAfter(const char *file, int line, const volatile void *cv) { argument
66 LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line,
68 void AnnotateHappensBefore(const char *file, int line, argument
70 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line);
71 void AnnotateIgnoreWritesBegin(const char *file, int line) {} argument
72 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line);
73 void AnnotateIgnoreWritesEnd(const char *file, in argument
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/ltrace/
H A Ddebug.c2 * This file is part of ltrace.
30 debug_(int level, const char *file, int line, const char *fmt, ...) { argument
41 output_line(NULL, "DEBUG: %s:%d: %s", file, line, buf);
/external/lzma/CPP/Common/
H A DListFileUtils.cpp22 NWindows::NFile::NIO::CInFile file; local
23 if (!file.Open(fileName))
26 if (!file.GetLength(length))
33 if (!file.Read(p, (UInt32)length, processed))
37 file.Close();
/external/mesa3d/src/gtest/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DAbstractProcessTask.java5 * you may not use this file except in compliance with the License.
63 abstract protected void processFile(File file) throws Exception; argument
/external/nanohttpd/webserver/markdown-plugin/src/main/java/fi/iki/elonen/
H A DMarkdownWebServerPlugin.java32 public NanoHTTPD.Response serveFile(String uri, Map<String, String> headers, NanoHTTPD.IHTTPSession session, File file, String mimeType) { argument
33 String markdownSource = readSource(file);
38 private String readSource(File file) { argument
42 fileReader = new FileReader(file);
/external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
H A DWebServerPlugin.java18 NanoHTTPD.Response serveFile(String uri, Map<String, String> headers, IHTTPSession session, File file, String mimeType); argument
/external/nanopb-c/tests/basic_stream/
H A Ddecode_stream.c60 FILE *file = (FILE*)stream->state; local
63 status = (fread(buf, 1, count, file) == count);
65 if (feof(file))
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DRequestTest.java5 * you may not use this file except in compliance with the License.
62 @Test public void file() throws Exception { method in class:RequestTest
63 File file = File.createTempFile("RequestTest", "tmp");
64 FileWriter writer = new FileWriter(file);
69 Request.Body body = Request.Body.create(contentType, file);
/external/owasp/sanitizer/
H A DMakefile27 @echo " license files into a zip file suitable for"
126 -Demma.report.out.file=out/coverage/index.html \
155 java -cp ${TEST_CLASSPATH}:out/classes -agentlib:hprof=cpu=times,format=a,file=out/java.hprof.txt,lineno=y,doe=y org.owasp.html.Benchmark benchmark-data/Yahoo\!.html s
/external/proguard/src/proguard/
H A DUpToDateChecker.java122 * Updates the input modification time based on the given file or
125 public void updateInputModificationTime(File file) argument
127 if (file != null)
129 updateModificationTime(file, false);
135 * Updates the input modification time based on the given file or
138 public void updateOutputModificationTime(File file) argument
140 if (file != null && file.getName().length() > 0)
142 updateModificationTime(file, true);
148 * Updates the specified modification time based on the given file o
151 updateModificationTime(File file, boolean isOutput) argument
[all...]
/external/proguard/src/proguard/io/
H A DFileDataEntry.java28 * This <code>DataEntry</code> represents a file.
35 private final File file; field in class:FileDataEntry
40 File file)
43 this.file = file;
51 // Chop the directory name from the file name and get the right separators.
52 return file.equals(directory) ?
53 file.getName() :
54 file.getPath()
62 return file
39 FileDataEntry(File directory, File file) argument
[all...]
/external/proguard/src/proguard/obfuscate/
H A DDictionaryNameFactory.java28 * specified input file.
46 * @param file the file from which the names can be read.
50 public DictionaryNameFactory(File file, argument
56 Reader reader = new FileReader(file);
106 // Is this the end of the file?
/external/protobuf/gtest/src/
H A Dgtest-typed-test.cc44 const char* file, int line, const char* registered_tests) {
86 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
43 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_generator.cc54 bool CppGenerator::Generate(const FileDescriptor* file, argument
95 string basename = StripProto(file->name());
98 FileGenerator file_generator(file, dllexport_decl);
108 // Generate cc file.
H A Dcpp_helpers.h103 // Convert a file name into a valid identifier.
106 // Return the name of the AddDescriptors() function for a given file.
109 // Return the name of the AssignDescriptors() function for a given file.
112 // Return the name of the ShutdownFile() function for a given file.
115 // Do message classes in this file keep track of unknown fields?
116 inline bool HasUnknownFields(const FileDescriptor *file) { argument
117 return file->options().optimize_for() != FileOptions::LITE_RUNTIME;
120 // Does this file have generated parsing, serialization, and other
122 inline bool HasGeneratedMethods(const FileDescriptor *file) { argument
123 return file
127 HasDescriptorMethods(const FileDescriptor *file) argument
132 HasGenericServices(const FileDescriptor *file) argument
139 HasUtf8Verification(const FileDescriptor* file) argument
146 HasFastArraySerialization(const FileDescriptor* file) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Dmessage_unittest.cc110 int file = open(filename.c_str(), O_RDONLY | O_BINARY); local
113 EXPECT_TRUE(message.ParseFromFileDescriptor(file));
116 EXPECT_GE(close(file), 0);
123 int file = open(filename.c_str(), O_RDONLY | O_BINARY); local
126 EXPECT_TRUE(message.ParseFromFileDescriptor(file));
129 EXPECT_GE(close(file), 0);
270 FileDescriptorProto file; local
271 file.set_name("foo.proto");
272 file.add_message_type()->set_name("Foo");
273 const Descriptor* descriptor = pool.BuildFile(file)
[all...]
/external/qemu/android/base/files/
H A DScopedStdioFile.h21 // I.e. guarantees that the file is closed on scope exit, unless
23 // the file explicitly with close().
26 // Default constructor, uses an empty file.
29 // Regular constructor, takes owneship of |file|.
30 explicit ScopedStdioFile(FILE* file) : mFile(file) {} argument
41 FILE* file = mFile; local
43 return file;

Completed in 592 milliseconds

1234567891011>>