HomeSort by relevance Sort by last modified time
    Searched defs:Open (Results 176 - 200 of 248) sorted by null

1 2 3 4 5 6 78 910

  /prebuilts/go/linux-x86/src/syscall/
zsyscall_dragonfly_amd64.go 852 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_freebsd_386.go 818 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_freebsd_amd64.go 818 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_freebsd_arm.go 818 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_netbsd_386.go 800 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_netbsd_amd64.go 800 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_netbsd_arm.go 800 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_openbsd_386.go 808 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_openbsd_amd64.go 808 func Open(path string, mode int, perm uint32) (fd int, err error) {
zsyscall_openbsd_arm.go 807 func Open(path string, mode int, perm uint32) (fd int, err error) {
  /art/runtime/
dex_file.cc 2 * Copyright (C) 2011 The Android Open Source Project
99 *error_msg = StringPrintf("Failed to open zip archive '%s' (error msg: %s)", filename,
164 std::unique_ptr<const DexFile> DexFile::Open(const uint8_t* base,
172 ScopedTrace trace(std::string("Open dex file from RAM ") + location);
183 std::unique_ptr<const DexFile> DexFile::Open(const std::string& location,
189 ScopedTrace trace(std::string("Open dex file from mapped-memory ") + location);
194 "DexFile: failed to open dex file '%s' that is too short to have a header",
213 bool DexFile::Open(const char* filename,
218 ScopedTrace trace(std::string("Open dex file ") + std::string(location));
219 DCHECK(dex_files != nullptr) << "DexFile::Open: out-param is nullptr"
    [all...]
elf_file.cc 2 * Copyright (C) 2012 The Android Open Source Project
64 ElfFileImpl<ElfTypes>* ElfFileImpl<ElfTypes>::Open(File* file,
88 ElfFileImpl<ElfTypes>* ElfFileImpl<ElfTypes>::Open(File* file,
404 // We'd also like to confirm a shstrtab in program_header_only_ mode (else Open() does this for
424 // MemMap::Open should have already set an error.
768 // TODO: we need to change this to calculate base_address_ in ::Open,
    [all...]
oat_file.cc 2 * Copyright (C) 2011 The Android Open Source Project
65 // Whether OatFile::Open will try dlopen. Fallback is our own ELF loader.
68 // Whether OatFile::Open will try dlopen on the host. On the host we're not linking against
74 // For debugging, Open will print DlOpen error message if set to true.
79 // These are used in OatFile::Open to try all our loaders.
84 // 2) Load() to try to open the file.
196 vdex_ = VdexFile::Open(vdex_filename, writable, low_4gb, /* unquicken*/ false, error_msg);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrFormPkg.cpp 232 CFormPkg::Open (
323 Open ();
355 Open ();
469 Open ();
    [all...]
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 142 bool PDBSourceLineWriter::Open(const wstring &file, FileFormat format) {
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.cpp 325 HRESULT CInArchive::Open(IInStream *stream, const UInt64 *searchHeaderSizeLimit)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 362 io::ZeroCopyOutputStream* Open(const string& filename);
447 open(filename.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
507 open(filename.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
556 io::ZeroCopyOutputStream* CommandLineInterface::GeneratorContextImpl::Open(
600 // This was just a regular Open().
    [all...]
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc 57 void UseScratchRegisterScope::Open(MacroAssembler* masm) {
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_session.cpp 207 int HWCSession::Open(const hw_module_t *module, const char *name, hw_device_t **device) {
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_session.cpp 5 * Copyright 2015 The Android Open Source Project
164 int HWCSession::Open(const hw_module_t *module, const char *name, hw_device_t **device) {
    [all...]
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_session.cpp 5 * Copyright 2015 The Android Open Source Project
177 int HWCSession::Open(const hw_module_t *module, const char *name, hw_device_t **device) {
    [all...]
  /hardware/qcom/display/sdm845/sdm/libs/hwc/
hwc_session.cpp 225 int HWCSession::Open(const hw_module_t *module, const char *name, hw_device_t **device) {
    [all...]
  /hardware/qcom/display/sdm845/sdm/libs/hwc2/
hwc_session.cpp 5 * Copyright 2015 The Android Open Source Project
177 int HWCSession::Open(const hw_module_t *module, const char *name, hw_device_t **device) {
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql.go 310 numOpen int // number of opened and pending open connections
381 // Track each driverConn's open statements, so we can close them
551 // Open opens a database specified by its database driver name and a
555 // Most users will open a database via a driver-specific connection
560 // Open may just validate its arguments without creating a connection
565 // and maintains its own pool of idle connections. Thus, the Open
568 func Open(driverName, dataSourceName string) (*DB, error) {
618 // Close closes the database, releasing any open resources.
699 // SetMaxOpenConns sets the maximum number of open connections to the database.
705 // If n <= 0, then there is no limit on the number of open connections
    [all...]
sql_test.go 63 db, err := Open("test", fakeDBName)
65 t.Fatalf("Open: %v", err)
86 db, err := Open("test", fakeDBName)
88 t.Fatalf("Open: %v", err)
149 t.Errorf("while closing db, freeConn %d/%d had %d open stmts; want 0", i, len(db.freeConn), n)
162 t.Fatalf("%d connections still open after closing DB", numOpen)
609 // Now try to open a normal connection.
1080 db, err := Open("test", fakeDBName+";badConn")
1082 t.Fatalf("Open: %v", err)
    [all...]

Completed in 1473 milliseconds

1 2 3 4 5 6 78 910