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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/base/memory/
shared_memory_android.cc 60 bool SharedMemory::Open(const std::string& name, bool read_only) {
scoped_open_process.h 24 // Open a new process by pid. Closes any previously opened process (even if
26 bool Open(ProcessId pid) {
  /external/chromium_org/ppapi/cpp/
file_system.cc 53 int32_t FileSystem::Open(int64_t expected_size,
57 return get_interface<PPB_FileSystem_1_0>()->Open(
  /external/chromium_org/ppapi/thunk/
ppb_ext_crx_file_system_private_thunk.cc 20 int32_t Open(PP_Instance instance,
23 VLOG(4) << "PPB_Ext_CrxFileSystem_Private::Open()";
28 return enter.SetResult(enter.functions()->Open(
37 &Open
ppb_isolated_file_system_private_thunk.cc 21 int32_t Open(PP_Instance instance,
25 VLOG(4) << "PPB_IsolatedFileSystem_Private::Open()";
30 return enter.SetResult(enter.functions()->Open(instance,
38 &Open
ppb_file_system_thunk.cc 34 int32_t Open(PP_Resource file_system,
37 VLOG(4) << "PPB_FileSystem::Open()";
41 return enter.SetResult(enter.object()->Open(expected_size, enter.callback()));
55 &Open,
ppb_video_destination_private_thunk.cc 33 int32_t Open(PP_Resource destination,
40 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
61 &Open,
ppb_video_source_private_thunk.cc 32 int32_t Open(PP_Resource source,
38 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
59 &Open,
  /external/chromium_org/ppapi/c/private/
ppb_ext_crx_file_system_private.h 37 * Open() opens the CRX file system for the current extension. It will fail
45 * completion of Open.
49 int32_t (*Open)(PP_Instance instance,
ppb_isolated_file_system_private.h 57 * Open() opens a file system corresponding the given file system type.
69 * completion of Open.
73 int32_t (*Open)(PP_Instance instance,
ppb_video_destination_private.h 74 * completion of Open().
79 * Returns PP_ERROR_INPROGRESS if destination is already open.
83 int32_t (*Open)(PP_Resource destination,
102 * Returns PP_ERROR_FAILED if destination is not open, if the video frame has
ppb_video_source_private.h 71 * completion of Open().
75 * Returns PP_ERROR_INPROGRESS if source is already open.
79 int32_t (*Open)(PP_Resource source,
97 * Returns PP_ERROR_FAILED if the source is not open, or if some other
  /external/chromium_org/ppapi/cpp/private/
ext_crx_file_system_private.cc 30 int32_t ExtCrxFileSystemPrivate::Open(
35 Open(instance_, cc.output(), cc.pp_completion_callback());
isolated_file_system_private.cc 32 int32_t IsolatedFileSystemPrivate::Open(
37 Open(instance_, type_, cc.output(), cc.pp_completion_callback());
video_destination_private.cc 47 int32_t VideoDestination_Private::Open(const Var& stream_url,
51 get_interface<PPB_VideoDestination_Private_0_1>()->Open(
video_source_private.cc 43 int32_t VideoSource_Private::Open(const Var& stream_url,
47 get_interface<PPB_VideoSource_Private_0_1>()->Open(
  /external/chromium_org/chrome/browser/ui/views/
color_chooser_aura.cc 57 ColorChooserAura* ColorChooserAura::Open(
67 return ColorChooserAura::Open(web_contents, initial_color);
  /external/chromium_org/media/audio/
audio_output_proxy.cc 25 bool AudioOutputProxy::Open() {
  /external/chromium_org/ppapi/c/
ppb_file_system.h 60 * Open() opens the file system. A file system must be opened before running
74 * completion of Open().
78 int32_t (*Open)(PP_Resource file_system,
90 * Open() completes.
  /external/chromium_org/ppapi/proxy/
isolated_file_system_private_resource.cc 42 int32_t IsolatedFileSystemPrivateResource::Open(
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfPopUpAnnotationDictionary_autogen.cpp 47 bool SkPdfPopUpAnnotationDictionary::Open(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Open", "");
56 return get("Open", "") != NULL;
SkPdfTextAnnotationDictionary_autogen.cpp 35 bool SkPdfTextAnnotationDictionary::Open(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Open", "");
44 return get("Open", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfPopUpAnnotationDictionary_autogen.cpp 47 bool SkPdfPopUpAnnotationDictionary::Open(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Open", "");
56 return get("Open", "") != NULL;
SkPdfTextAnnotationDictionary_autogen.cpp 35 bool SkPdfTextAnnotationDictionary::Open(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Open", "");
44 return get("Open", "") != NULL;
  /art/runtime/
zip_archive.cc 2 * Copyright (C) 2008 The Android Open Source Project
77 // This dance is more portable than Linux's O_CLOEXEC open(2) flag.
90 ZipArchive* ZipArchive::Open(const char* filename, std::string* error_msg) {

Completed in 3674 milliseconds

1 2 3 4 5 6 7 8 910