Searched defs:Open (Results 1 - 25 of 200) sorted by relevance

12345678

/external/chromium_org/ppapi/c/private/
H A Dppb_ext_crx_file_system_private.h37 * Open() opens the CRX file system for the current extension. It will fail
45 * completion of Open.
49 int32_t (*Open)(PP_Instance instance, member in struct:PPB_Ext_CrxFileSystem_Private_0_1
H A Dppb_isolated_file_system_private.h57 * Open() opens a file system corresponding the given file system type.
69 * completion of Open.
73 int32_t (*Open)(PP_Instance instance, member in struct:PPB_IsolatedFileSystem_Private_0_2
H A Dppb_video_destination_private.h74 * completion of Open().
83 int32_t (*Open)(PP_Resource destination, member in struct:PPB_VideoDestination_Private_0_1
H A Dppb_video_source_private.h71 * completion of Open().
79 int32_t (*Open)(PP_Resource source, member in struct:PPB_VideoSource_Private_0_1
/external/chromium_org/base/memory/
H A Dshared_memory_android.cc60 bool SharedMemory::Open(const std::string& name, bool read_only) { function in class:base::SharedMemory
H A Dscoped_open_process.h24 // Open a new process by pid. Closes any previously opened process (even if
26 bool Open(ProcessId pid) { function in class:base::ScopedOpenProcess
/external/chromium_org/ppapi/c/
H A Dppb_file_system.h60 * 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, member in struct:PPB_FileSystem_1_0
90 * Open() completes.
H A Dppb_url_loader.h39 * -# Call Open() with the <code>URLRequestInfo</code> as an argument.
40 * -# When Open() completes, call GetResponseInfo() to examine the response
77 * Open() begins loading the <code>URLRequestInfo</code>. The operation
86 * asynchronous completion of Open(). This callback will run when response
88 * will only run if Open() returns <code>PP_OK_COMPLETIONPENDING</code>.
92 int32_t (*Open)(PP_Resource loader, member in struct:PPB_URLLoader_1_0
96 * FollowRedirect() can be invoked to follow a redirect after Open()
113 * meaningful after Open() has been called). Progress only refers to the
117 * to Open() had the <code>PP_URLREQUESTPROPERTY_REPORTUPLOADPROGRESS</code>
133 * meaningful after Open() ha
[all...]
/external/chromium_org/ppapi/cpp/private/
H A Dext_crx_file_system_private.cc30 int32_t ExtCrxFileSystemPrivate::Open( function in class:pp::ExtCrxFileSystemPrivate
35 Open(instance_, cc.output(), cc.pp_completion_callback());
H A Disolated_file_system_private.cc32 int32_t IsolatedFileSystemPrivate::Open( function in class:pp::IsolatedFileSystemPrivate
37 Open(instance_, type_, cc.output(), cc.pp_completion_callback());
H A Dvideo_destination_private.cc47 int32_t VideoDestination_Private::Open(const Var& stream_url, function in class:pp::VideoDestination_Private
51 get_interface<PPB_VideoDestination_Private_0_1>()->Open(
H A Dvideo_source_private.cc43 int32_t VideoSource_Private::Open(const Var& stream_url, function in class:pp::VideoSource_Private
47 get_interface<PPB_VideoSource_Private_0_1>()->Open(
/external/chromium_org/ppapi/thunk/
H A Dppb_ext_crx_file_system_private_thunk.cc20 int32_t Open(PP_Instance instance, function in namespace:ppapi::thunk::__anon10255
23 VLOG(4) << "PPB_Ext_CrxFileSystem_Private::Open()";
28 return enter.SetResult(enter.functions()->Open(
37 &Open
H A Dppb_isolated_file_system_private_thunk.cc21 int32_t Open(PP_Instance instance, function in namespace:ppapi::thunk::__anon10289
25 VLOG(4) << "PPB_IsolatedFileSystem_Private::Open()";
30 return enter.SetResult(enter.functions()->Open(instance,
38 &Open
H A Dppb_file_system_thunk.cc34 int32_t Open(PP_Resource file_system, function in namespace:ppapi::thunk::__anon10262
37 VLOG(4) << "PPB_FileSystem::Open()";
41 return enter.SetResult(enter.object()->Open(expected_size, enter.callback()));
55 &Open,
H A Dppb_video_destination_private_thunk.cc33 int32_t Open(PP_Resource destination, function in namespace:ppapi::thunk::__anon10323
40 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
61 &Open,
H A Dppb_video_source_private_thunk.cc32 int32_t Open(PP_Resource source, function in namespace:ppapi::thunk::__anon10325
38 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
59 &Open,
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dsearch_webstore_result.cc44 void SearchWebstoreResult::Open(int event_flags) { function in class:app_list::SearchWebstoreResult
/external/chromium_org/chrome/browser/ui/views/
H A Dcolor_chooser_aura.cc57 ColorChooserAura* ColorChooserAura::Open( function in class:ColorChooserAura
67 return ColorChooserAura::Open(web_contents, initial_color);
/external/chromium_org/content/public/common/
H A Dfile_chooser_params.h23 Open, enumerator in enum:content::FileChooserParams::Mode
25 // Like Open, but allows picking multiple files to open.
28 // Like Open, but selects a folder for upload.
39 // which will be either "Open" or "Save" depending on the mode.
/external/chromium_org/content/renderer/android/
H A Drenderer_date_time_picker.cc58 bool RendererDateTimePicker::Open() { function in class:content::RendererDateTimePicker
/external/chromium_org/media/audio/
H A Daudio_output_proxy.cc25 bool AudioOutputProxy::Open() { function in class:media::AudioOutputProxy
/external/chromium_org/ppapi/c/dev/
H A Dppb_video_capture_dev.h40 * 3- Open a video capture device. In addition to a device reference (0 can be
123 int32_t (*Open)(PP_Resource video_capture, member in struct:PPB_VideoCapture_Dev_0_3
154 * not valid to call |Open()| again after a call to this method.
/external/chromium_org/ppapi/cpp/
H A Dfile_system.cc53 int32_t FileSystem::Open(int64_t expected_size, function in class:pp::FileSystem
57 return get_interface<PPB_FileSystem_1_0>()->Open(
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dtemporary_file.cc27 int32_t TempFile::Open(bool writeable) { function in class:plugin::TempFile
42 PLUGIN_PRINTF(("TempFile::Open failed to convert HANDLE to posix\n"));

Completed in 4883 milliseconds

12345678