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

1 2 3 4 5 6 7 8 910

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6405.go 11 func Open() (int, error) {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue6405.go 11 func Open() (int, error) {
  /prebuilts/go/darwin-x86/src/cmd/internal/browser/
browser.go 14 // Commands returns a list of possible commands to use to open a url.
22 cmds = append(cmds, []string{"/usr/bin/open"})
26 cmds = append(cmds, []string{"xdg-open"})
37 // Open tries to open url in a browser and reports whether it succeeded.
38 func Open(url string) bool {
  /prebuilts/go/linux-x86/src/cmd/internal/browser/
browser.go 14 // Commands returns a list of possible commands to use to open a url.
22 cmds = append(cmds, []string{"/usr/bin/open"})
26 cmds = append(cmds, []string{"xdg-open"})
37 // Open tries to open url in a browser and reports whether it succeeded.
38 func Open(url string) bool {
  /external/libchrome/base/memory/
shared_memory_android.cc 66 bool SharedMemory::Open(const std::string&, bool /*read_only*/) {
  /prebuilts/go/darwin-x86/src/plugin/
plugin.go 26 // Open opens a Go plugin.
29 func Open(path string) (*Plugin, error) {
30 return open(path)
56 // may be loaded with the Open function and then the exported package
59 // p, err := plugin.Open("plugin_name.so")
  /prebuilts/go/linux-x86/src/plugin/
plugin.go 26 // Open opens a Go plugin.
29 func Open(path string) (*Plugin, error) {
30 return open(path)
56 // may be loaded with the Open function and then the exported package
59 // p, err := plugin.Open("plugin_name.so")
  /system/update_engine/payload_consumer/
file_writer.cc 2 // Copyright (C) 2009 The Android Open Source Project
23 int DirectFileWriter::Open(const char* path, int flags, mode_t mode) {
25 fd_ = open(path, flags, mode);
  /art/runtime/base/
scoped_flock.cc 2 * Copyright (C) 2011 The Android Open Source Project
31 /* static */ ScopedFlock LockedFile::Open(const char* filename, std::string* error_msg) {
32 return Open(filename, O_CREAT | O_RDWR, true, error_msg);
35 /* static */ ScopedFlock LockedFile::Open(const char* filename, int flags, bool block,
45 *error_msg = StringPrintf("Failed to open file '%s': %s", filename, strerror(errno));
103 *error_msg = StringPrintf("Failed to duplicate open file '%s': %s",
  /prebuilts/go/darwin-x86/src/cmd/internal/bio/
buf.go 36 // Open returns a Reader for the file named name.
37 func Open(name string) (*Reader, error) {
38 f, err := os.Open(name)
  /prebuilts/go/darwin-x86/src/debug/pe/
section.go 92 // Open() to avoid fighting over the seek offset
108 // Open returns a new ReadSeeker reading the PE section s.
109 func (s *Section) Open() io.ReadSeeker {
  /prebuilts/go/darwin-x86/src/mime/multipart/
formdata.go 103 // and are accessible via the *FileHeader's Open method.
136 // Open opens and returns the FileHeader's associated File.
137 func (fh *FileHeader) Open() (File, error) {
142 return os.Open(fh.tmpfile)
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305.go 56 func (c *chacha20poly1305) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
58 panic("chacha20poly1305: bad nonce length passed to Open")
67 return c.open(dst, nonce, ciphertext, additionalData)
  /prebuilts/go/linux-x86/src/cmd/internal/bio/
buf.go 36 // Open returns a Reader for the file named name.
37 func Open(name string) (*Reader, error) {
38 f, err := os.Open(name)
  /prebuilts/go/linux-x86/src/debug/pe/
section.go 92 // Open() to avoid fighting over the seek offset
108 // Open returns a new ReadSeeker reading the PE section s.
109 func (s *Section) Open() io.ReadSeeker {
  /prebuilts/go/linux-x86/src/mime/multipart/
formdata.go 103 // and are accessible via the *FileHeader's Open method.
136 // Open opens and returns the FileHeader's associated File.
137 func (fh *FileHeader) Open() (File, error) {
142 return os.Open(fh.tmpfile)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305.go 56 func (c *chacha20poly1305) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
58 panic("chacha20poly1305: bad nonce length passed to Open")
67 return c.open(dst, nonce, ciphertext, additionalData)
  /build/blueprint/pathtools/
fs.go 59 Open(name string) (io.ReadCloser, error)
69 func (osFs) Open(name string) (io.ReadCloser, error) { return os.Open(name) }
103 func (m *mockFs) Open(name string) (io.ReadCloser, error) {
115 Op: "open",
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/SmmAccess/
SmmAccess.h 69 EFI_SMM_OPEN Open;
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuIoThunk.h 41 VOID *Interface; /// Only be valid after Open() is called
44 EMU_IO_THUNK_PROTOCOL_CLOSE_OPEN Open;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
SmmAccess.h 42 @param DescriptorIndex Indicates that the driver wishes to open
65 @retval EFI_DEVICE_ERROR The given DescriptorIndex is not open.
85 @retval EFI_DEVICE_ERROR The given DescriptorIndex is not open.
120 EFI_SMM_OPEN Open; ///< Opens the SMRAM.
125 BOOLEAN OpenState; ///< Indicates the current state of the SMRAM. Set to TRUE if any region is open.
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Ppi/
SmmAccess.h 9 - Exposing the SMRAM to all non-SMM agents, or the "open" state
44 @param DescriptorIndex The region of SMRAM to Open.
94 one range is still open.
135 PEI_SMM_OPEN Open;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
SmmAccess2.h 9 - Exposing the SMRAM to all non-SMM agents, or the "open" state
115 EFI_SMM_OPEN2 Open;
124 /// Indicates the current state of the SMRAM. Set to TRUE if SMRAM is open.
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/NorthCluster/Include/Ppi/
SmmAccess.h 55 This routine accepts a request to "open" a region of SMRAM. The
57 The use of "open" means that the memory is visible from all PEIM
63 DescriptorIndex - Region of SMRAM to Open.
125 one range is still open.
161 PEI_SMM_OPEN Open;
  /external/boringssl/src/ssl/test/runner/
chacha20_poly1305.go 176 func (c *chaCha20Poly1305) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 910