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

1 2 3 4 5 6 7 8 91011>>

  /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 15 // Commands returns a list of possible commands to use to open a url.
23 cmds = append(cmds, []string{"/usr/bin/open"})
28 // xdg-open is only for use in a desktop environment.
29 cmds = append(cmds, []string{"xdg-open"})
41 // Open tries to open url in a browser and reports whether it succeeded.
42 func Open(url string) bool {
  /prebuilts/go/linux-x86/src/cmd/internal/browser/
browser.go 15 // Commands returns a list of possible commands to use to open a url.
23 cmds = append(cmds, []string{"/usr/bin/open"})
28 // xdg-open is only for use in a desktop environment.
29 cmds = append(cmds, []string{"xdg-open"})
41 // Open tries to open url in a browser and reports whether it succeeded.
42 func Open(url string) bool {
  /external/libchrome/base/memory/
shared_memory_android.cc 61 bool SharedMemory::Open(const std::string& name, bool read_only) {
  /external/tensorflow/tensorflow/python/platform/
gfile.py 40 @tf_export('gfile.GFile', 'gfile.Open')
56 # Does not alias to Open so that we use our version of GFile to strip
58 Open = GFile
70 'Open',
  /prebuilts/go/darwin-x86/src/os/signal/internal/pty/
pty.go 41 // Open returns a master pty and the name of the linked slave tty.
42 func Open() (master *os.File, slave string, err error) {
  /prebuilts/go/darwin-x86/src/plugin/
plugin.go 28 // Open opens a Go plugin.
31 func Open(path string) (*Plugin, error) {
32 return open(path)
55 // may be loaded with the Open function and then the exported package
58 // p, err := plugin.Open("plugin_name.so")
  /prebuilts/go/linux-x86/src/os/signal/internal/pty/
pty.go 41 // Open returns a master pty and the name of the linked slave tty.
42 func Open() (master *os.File, slave string, err error) {
  /prebuilts/go/linux-x86/src/plugin/
plugin.go 28 // Open opens a Go plugin.
31 func Open(path string) (*Plugin, error) {
32 return open(path)
55 // may be loaded with the Open function and then the exported package
58 // p, err := plugin.Open("plugin_name.so")
  /bionic/libc/system_properties/
context_node.cpp 2 * Copyright (C) 2008 The Android Open Source Project
45 bool ContextNode::Open(bool access_rw, bool* fsetxattr_failed) {
70 if (!CheckAccess() || !Open(false, nullptr)) {
  /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/libartbase/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",
  /device/google/cuttlefish_common/common/vsoc/lib/
typed_region_view.h 4 * Copyright (C) 2017 The Android Open Source Project
54 bool Open(const char* domain) {
55 return RegionView::Open(LayoutType::region_name, domain);
58 bool Open() {
59 return RegionView::Open(LayoutType::region_name);
80 if (!instance->Open(domain)) {
93 if (!instance->Open()) {
  /device/google/cuttlefish_common/guest/hals/audio/policy/
vsoc_audio_policy_hal.cpp 2 * Copyright (C) 2016 The Android Open Source Project
111 int GceAudioPolicy::Open(
142 .open = &cvd::GceAudioPolicy::Open,
153 .author = "The Android Open Source Project",
  /device/google/cuttlefish_common/guest/vsoc/lib/
gralloc_region_view.cpp 2 * Copyright (C) 2017 The Android Open Source Project
43 bool GrallocRegionView::Open() {
44 if (!vsoc::ManagerRegionView<GrallocRegionView, GrallocManagerLayout>::Open()) {
48 vsoc::RegionControl::Open(
51 LOG_FATAL("Unable to open managed region");
  /external/nos/host/android/citadel/citadeld/
CitadeldProxyClient.cpp 2 * Copyright (C) 2017 The Android Open Source Project
40 void CitadeldProxyClient::Open() {
  /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/internal/testlog/
log.go 19 Open(file string)
57 // Open calls Logger().Open, if a logger has been set.
58 func Open(name string) {
60 log.Open(name)
  /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/internal/testlog/
log.go 19 Open(file string)
57 // Open calls Logger().Open, if a logger has been set.
58 func Open(name string) {
60 log.Open(name)
  /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)

Completed in 612 milliseconds

1 2 3 4 5 6 7 8 91011>>