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

1 2 3 4 5 67 8 910

  /prebuilts/go/darwin-x86/src/syscall/
fs_nacl.go 246 // open opens or creates a file with the given name, open mode,
248 func (fs *fsys) open(name string, openmode int, mode uint32) (fileImpl, error) { func
473 func Open(path string, openmode int, perm uint32) (fd int, err error) {
477 f, err := fs.open(path, openmode, perm&0777|S_IFREG)
487 _, err := fs.open(path, O_CREATE|O_EXCL, perm&0777|S_IFDIR)
745 func mkdev(path string, mode uint32, open func() (devFile, error)) error {
746 f, err := fs.open(path, O_CREATE|O_RDONLY|O_EXCL, S_IFCHR|mode)
752 fs.dev = append(fs.dev, open)
815 f, err := fs.open(name, O_CREATE|O_EXCL, mode
    [all...]
syscall_linux.go 33 return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
50 func Open(path string, mode int, perm uint32) (fd int, err error) {
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) {
  /prebuilts/go/linux-x86/src/crypto/tls/
cipher_suites.go 178 func (f *fixedNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
180 return f.aead.Open(out, f.nonce[:], plaintext, additionalData)
206 func (f *xorNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
210 result, err := f.aead.Open(out, f.nonceMask[:], plaintext, additionalData)
  /prebuilts/go/linux-x86/src/syscall/
fs_nacl.go 246 // open opens or creates a file with the given name, open mode,
248 func (fs *fsys) open(name string, openmode int, mode uint32) (fileImpl, error) { func
473 func Open(path string, openmode int, perm uint32) (fd int, err error) {
477 f, err := fs.open(path, openmode, perm&0777|S_IFREG)
487 _, err := fs.open(path, O_CREATE|O_EXCL, perm&0777|S_IFDIR)
745 func mkdev(path string, mode uint32, open func() (devFile, error)) error {
746 f, err := fs.open(path, O_CREATE|O_RDONLY|O_EXCL, S_IFCHR|mode)
752 fs.dev = append(fs.dev, open)
815 f, err := fs.open(name, O_CREATE|O_EXCL, mode
    [all...]
syscall_linux.go 33 return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
50 func Open(path string, mode int, perm uint32) (fd int, err error) {
  /system/core/fs_mgr/
fs_mgr_avb.cpp 2 * Copyright (C) 2016 The Android Open Source Project
352 android::base::unique_fd fd(open("/dev/device-mapper", O_RDWR));
476 FsManagerAvbUniquePtr FsManagerAvbHandle::Open(const fstab& fstab) {
481 FsManagerAvbUniquePtr FsManagerAvbHandle::Open(ByNameSymlinkMap&& by_name_symlink_map) {
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
FileHandleWrappers.c 21 File style interface for console (Open).
928 EFI_FILE_OPEN Open;
    [all...]
  /external/boringssl/src/ssl/test/runner/
cipher_suites.go 252 // constructed. Since a seal and open operation may be running
266 func (f *fixedNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
268 return f.aead.Open(out, f.openNonce, plaintext, additionalData)
302 // constructed. Since a seal and open operation may be running
318 func (x *xorNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
320 ret, err := x.aead.Open(out, x.openNonce, plaintext, additionalData)
  /external/lzma/CPP/7zip/Archive/
LzmaHandler.cpp 328 STDMETHODIMP CHandler::Open(IInStream *inStream, const UInt64 *, IArchiveOpenCallback *)
XzHandler.cpp 480 STDMETHODIMP CHandler::Open(IInStream *inStream, const UInt64 *, IArchiveOpenCallback *callback)
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 11 // For Open Source Computer Vision Library
141 bool RBaseStream::Open( const char* filename )
760 bool WBaseStream::Open( const char* filename )
967 bool WMBitStream::Open( const char* filename )
970 return WBaseStream::Open( filename );
  /external/rmi4utils/rmidevice/
hiddevice.cpp 70 int HIDDevice::Open(const char * filename)
78 m_fd = open(filename, O_RDWR);
541 fd = open(file, O_WRONLY);
621 rc = Open(hidrawFile.c_str());
623 fprintf(stderr, "Failed to open device (%s) during rebind: %d: errno: %s (%d)\n",
  /external/webrtc/webrtc/base/
stream.cc 334 bool FileStream::Open(const std::string& filename, const char* mode,
375 return Open(filename, mode, error);
496 // Stream not open.
506 // Stream not open.
952 LOG_V(level_) << label_ << " Open";
  /frameworks/base/libs/androidfw/
AssetManager2.cpp 2 * Copyright (C) 2016 The Android Open Source Project
191 std::unique_ptr<Asset> AssetManager2::Open(const std::string& filename, Asset::AccessMode mode) {
196 std::unique_ptr<Asset> AssetManager2::Open(const std::string& filename, ApkAssetsCookie cookie,
239 std::unique_ptr<Asset> asset = apk_assets_[i]->Open(filename, mode);
260 return apk_assets_[cookie]->Open(filename, mode);
    [all...]
  /frameworks/native/vulkan/libvulkan/
driver.cpp 2 * Copyright 2016 The Android Open Source Project
67 static bool Open();
206 bool Hal::Open() {
209 // Use a stub device unless we successfully open a real HAL device.
238 module->common.methods->open(&module->common, HWVULKAN_DEVICE_0,
241 // Any device with a Vulkan HAL should be able to open the device.
242 ALOGE("failed to open Vulkan HAL device: %s (%d)", strerror(-result),
628 return Hal::Open();
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 67 8 910