Searched defs:file (Results 151 - 175 of 1831) sorted by relevance

1234567891011>>

/external/chromium_org/content/test/
H A Dwebui_resource_browsertest.cc3 // found in the LICENSE file.
25 // Runs all test functions in |file|, waiting for them to complete.
26 void RunTest(const base::FilePath& file) { argument
27 ASSERT_TRUE(PathExists(file));
28 NavigateToURL(shell(), net::FilePathToFileURL(file));
35 void RunMediaInternalsTest(const base::FilePath::CharType* file) { argument
43 .Append(file));
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_logging.cc3 // found in the LICENSE file.
5 // Only compile this file in debug build. This gives us one more level of
88 CdmLogMessage::CdmLogMessage(const char* file, int line) { argument
89 std::string filename(file);
/external/chromium_org/media/video/capture/
H A Dfile_video_capture_device_factory.cc3 // found in the LICENSE file.
16 "/dev/placeholder-for-file-backed-fake-capture-device";
18 // Inspects the command line and retrieves the file path parameter.
64 base::File file = local
67 FileVideoCaptureDevice::ParseFileAndExtractVideoFormat(&file,
/external/chromium_org/mojo/embedder/
H A Dchannel_init.cc3 // found in the LICENSE file.
23 base::PlatformFile file,
28 CreateChannel(ScopedPlatformHandle(PlatformHandle(file)),
22 Init( base::PlatformFile file, scoped_refptr<base::TaskRunner> io_thread_task_runner) argument
/external/chromium_org/mojo/public/cpp/environment/lib/
H A Dlogging.cc3 // found in the LICENSE file.
33 LogMessage::LogMessage(const char* file, int line, MojoLogLevel log_level) argument
36 stream_ << GetFilename(file) << '(' << line << "): ";
/external/chromium_org/net/base/
H A Dnet_log_logger_unittest.cc3 // found in the LICENSE file.
31 FILE* file = base::OpenFile(log_path_, "w"); local
32 ASSERT_TRUE(file);
34 NetLogLogger logger(file, *constants);
53 FILE* file = base::OpenFile(log_path_, "w"); local
54 ASSERT_TRUE(file);
56 NetLogLogger logger(file, *constants);
85 FILE* file = base::OpenFile(log_path_, "w"); local
86 ASSERT_TRUE(file);
88 NetLogLogger logger(file, *constant
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dmapped_file.h3 // found in the LICENSE file.
11 #include "net/disk_cache/blockfile/file.h"
20 // This class implements a memory mapped file used to access block-files. The
28 // Performs object initialization. name is the file to use, and size is the
29 // amount of data to memory map from the file. If size is 0, the whole file
37 // Loads or stores a given block from the backing file (synchronously).
49 // Heats up the file system cache and make sure the file is fully
72 explicit ScopedFlush(MappedFile* file) argument
[all...]
/external/chromium_org/net/ssl/
H A Dopenssl_ssl_util.h3 // found in the LICENSE file.
20 // Puts a net error, |err|, on the error stack in OpenSSL. The file and line are
44 OpenSSLErrorInfo() : error_code(0), file(NULL), line(0) {}
47 const char* file; member in struct:net::OpenSSLErrorInfo
/external/chromium_org/net/test/
H A Dscoped_mock_log.cc3 // found in the LICENSE file.
50 const char* file,
54 return g_instance_->Log(severity, file, line, message_start, str);
49 LogMessageHandler(int severity, const char* file, int line, size_t message_start, const std::string& str) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_file_fileref_thunk.cc3 // found in the LICENSE file.
25 int32_t OpenFile(PP_Resource file_ref_id, int32_t mode, PP_FileHandle* file) { argument
32 return enter.functions()->OpenFileRef(instance, file_ref_id, mode, file);
/external/chromium_org/remoting/host/native_messaging/
H A Dnative_messaging_writer.cc3 // found in the LICENSE file.
32 NativeMessagingWriter::NativeMessagingWriter(base::File file) argument
33 : write_stream_(file.Pass()),
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Ddie.cc3 // found in the LICENSE file.
42 // and file a bug...
50 void Die::SandboxDie(const char* msg, const char* file, int line) { argument
52 LogToStderr(msg, file, line);
54 logging::LogMessage(file, line, logging::LOG_FATAL).stream() << msg;
66 void Die::SandboxInfo(const char* msg, const char* file, int line) { argument
68 logging::LogMessage(file, line, logging::LOG_INFO).stream() << msg;
72 void Die::LogToStderr(const char* msg, const char* file, int line) { argument
76 std::string s = std::string(file) + ":" + buf + ":" + msg + "\n";
/external/chromium_org/sandbox/win/src/
H A Dapp_container_test.cc3 // found in the LICENSE file.
37 base::win::ScopedHandle file; local
38 file.Set(CreateFile(file_name, GENERIC_READ | STANDARD_RIGHTS_READ, kSharing,
41 if (!file.IsValid())
45 if (!AtlGetSecurityDescriptor(file.Get(), SE_FILE_OBJECT, &sd,
/external/chromium_org/sandbox/win/tools/finder/
H A Dfinder_fs.cc3 // found in the LICENSE file.
55 HANDLE file; local
57 file = ::CreateFile(name.GetBuffer(),
65 if (file != INVALID_HANDLE_VALUE) {
68 ::CloseHandle(file);
77 file = ::CreateFile(name.GetBuffer(),
85 if (file != INVALID_HANDLE_VALUE) {
88 ::CloseHandle(file);
97 file = ::CreateFile(name.GetBuffer(),
105 if (file !
[all...]
/external/chromium_org/testing/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/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValueTest.cpp3 // found in the LICENSE file.
47 File* file = V8File::toImpl(v8::Handle<v8::Object>::Cast(v8File)); local
48 EXPECT_TRUE(file->hasBackingFile());
49 EXPECT_EQ(File::IsUserVisible, file->userVisibility());
50 EXPECT_EQ(filePath, file->path());
67 File* file = V8File::toImpl(v8::Handle<v8::Object>::Cast(v8File)); local
68 EXPECT_FALSE(file->hasBackingFile());
69 EXPECT_EQ(File::IsNotUserVisible, file->userVisibility());
70 EXPECT_EQ("hello.txt", file->name());
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileList.h52 void append(PassRefPtrWillBeRawPtr<File> file) { m_files.append(file); } argument
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DHTMLInputElementFileSystem.cpp62 File* file = files->item(i); local
64 // FIXME: This involves synchronous file operation.
66 if (!getFileMetadata(file->path(), metadata))
70 String virtualPath = DOMFilePath::append("/", file->name());
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDataLog.cpp36 // Uncomment to force logging to the given file regardless of what the environment variable says. Note that
48 static FilePrintStream* file; member in namespace:WTF
63 file = FilePrintStream::open(actualFilename, "w").leakPtr();
64 if (!file)
65 fprintf(stderr, "Warning: Could not open log file %s for writing.\n", actualFilename);
68 if (!file)
69 file = new FilePrintStream(stderr, FilePrintStream::Borrow);
71 setvbuf(file->file(), 0, _IONBF, 0); // Prefer unbuffered output, so that we get a full log upon crash or deadlock.
79 if (!file)
[all...]
H A DFilePrintStream.cpp31 FilePrintStream::FilePrintStream(FILE* file, AdoptionMode adoptionMode) argument
32 : m_file(file)
46 FILE* file = fopen(filename, mode); local
47 if (!file)
50 return adoptPtr(new FilePrintStream(file));
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DSourceLocation.h4 // found in the LICENSE file.
16 : file(0),
21 : file(f),
28 return (file == other.file) && (line == other.line);
31 int file; member in struct:pp::SourceLocation
/external/chromium_org/third_party/boringssl/src/crypto/err/
H A Derr_test.c47 const char *file; local
58 packed_error = ERR_get_error_line_data(&file, &line, &data, &flags);
59 if (strcmp(file, "test") != 0 ||
/external/chromium_org/third_party/freetype/src/base/
H A Dftsystem.c10 /* This file is part of the FreeType project, and may only be used, */
13 /* this file you indicate that you have read the license and */
20 /* This file contains the default interface used by FreeType to access */
206 FT_FILE* file; local
212 file = STREAM_FILE( stream );
215 ft_fseek( file, offset, SEEK_SET );
217 return (unsigned long)ft_fread( buffer, 1, count, file );
227 FT_FILE* file; local
240 file = ft_fopen( filepathname, "rb" );
241 if ( !file )
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dbuilder.cc3 // found in the LICENSE file. See the AUTHORS file for names of contributors.
29 WritableFile* file; local
30 s = env->NewWritableFile(fname, &file);
35 TableBuilder* builder = new TableBuilder(options, file);
55 // Finish and check for file errors
57 s = file->Sync();
60 s = file->Close();
62 delete file;
63 file
[all...]
/external/chromium_org/third_party/libvpx/source/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...]

Completed in 4648 milliseconds

1234567891011>>