Searched refs:creation_flags (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumd3d10_1.idl35 HRESULT GalliumD3D10DeviceCreate1(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D10Device1** ppDevice);
H A Dgalliumd3d11.idl35 HRESULT GalliumD3D11DeviceCreate(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D11Device** ppDevice);
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumd3d10_1.idl35 HRESULT GalliumD3D10DeviceCreate1(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D10Device1** ppDevice);
H A Dgalliumd3d11.idl35 HRESULT GalliumD3D11DeviceCreate(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D11Device** ppDevice);
/external/chromium_org/extensions/browser/
H A Dpending_extension_manager.h95 int creation_flags,
105 int creation_flags,
127 int creation_flags,
H A Dexternal_provider_interface.h41 int creation_flags,
51 int creation_flags,
H A Dpending_extension_info.cc19 int creation_flags,
28 creation_flags_(creation_flags),
11 PendingExtensionInfo( const std::string& id, const GURL& update_url, const Version& version, ShouldAllowInstallPredicate should_allow_install, bool is_from_sync, bool install_silently, Manifest::Location install_source, int creation_flags, bool mark_acknowledged) argument
H A Dpending_extension_info.h38 int creation_flags,
63 int creation_flags() const { return creation_flags_; } function in class:extensions::PendingExtensionInfo
H A Dpending_extension_manager.cc143 int creation_flags,
169 location, creation_flags, mark_acknowledged);
177 int creation_flags,
195 creation_flags,
226 int creation_flags,
237 creation_flags,
139 AddFromExternalUpdateUrl( const std::string& id, const GURL& update_url, Manifest::Location location, int creation_flags, bool mark_acknowledged) argument
173 AddFromExternalFile( const std::string& id, Manifest::Location install_source, const Version& version, int creation_flags, bool mark_acknowledged) argument
218 AddExtensionImpl( const std::string& id, const GURL& update_url, const Version& version, PendingExtensionInfo::ShouldAllowInstallPredicate should_allow_install, bool is_from_sync, bool install_silently, Manifest::Location install_source, int creation_flags, bool mark_acknowledged) argument
/external/chromium_org/remoting/host/win/
H A Dlaunch_process_with_token.cc180 bool ProcessCreateProcessResponse(DWORD creation_flags, argument
242 if ((creation_flags & CREATE_SUSPENDED) == 0) {
292 DWORD creation_flags,
309 DWORD creation_flags; member in struct:__anon10520::CreateProcessRequest
335 request->creation_flags = creation_flags | CREATE_SUSPENDED;
375 DWORD creation_flags,
386 creation_flags, desktop_name)) {
394 if (!ProcessCreateProcessResponse(creation_flags, &process_information)) {
458 DWORD creation_flags,
288 SendCreateProcessRequest( HANDLE pipe, const base::FilePath::StringType& application_name, const CommandLine::StringType& command_line, DWORD creation_flags, const char16* desktop_name) argument
371 CreateRemoteSessionProcess( uint32 session_id, const base::FilePath::StringType& application_name, const CommandLine::StringType& command_line, DWORD creation_flags, const char16* desktop_name, PROCESS_INFORMATION* process_information_out) argument
452 LaunchProcessWithToken(const base::FilePath& binary, const CommandLine::StringType& command_line, HANDLE user_token, SECURITY_ATTRIBUTES* process_attributes, SECURITY_ATTRIBUTES* thread_attributes, bool inherit_handles, DWORD creation_flags, const char16* desktop_name, ScopedHandle* process_out, ScopedHandle* thread_out) argument
[all...]
H A Dlaunch_process_with_token.h40 DWORD creation_flags,
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11.cpp224 HRESULT STDMETHODCALLTYPE GalliumD3D11DeviceCreate(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D11Device** ppDevice) argument
226 if(creation_flags & D3D11_CREATE_DEVICE_SINGLETHREADED)
227 *ppDevice = new GalliumD3D11ScreenImpl<false>(screen, context, owns_context, creation_flags, adapter);
229 *ppDevice = new GalliumD3D11ScreenImpl<true>(screen, context, owns_context, creation_flags, adapter);
233 HRESULT STDMETHODCALLTYPE GalliumD3D10DeviceCreate1(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D10Device1** ppDevice) argument
235 if(creation_flags & D3D10_CREATE_DEVICE_SINGLETHREADED)
236 *ppDevice = new GalliumD3D10Device<false>(screen, context, owns_context, creation_flags, adapter);
238 *ppDevice = new GalliumD3D10Device<true>(screen, context, owns_context, creation_flags, adapter);
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11.cpp224 HRESULT STDMETHODCALLTYPE GalliumD3D11DeviceCreate(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D11Device** ppDevice) argument
226 if(creation_flags & D3D11_CREATE_DEVICE_SINGLETHREADED)
227 *ppDevice = new GalliumD3D11ScreenImpl<false>(screen, context, owns_context, creation_flags, adapter);
229 *ppDevice = new GalliumD3D11ScreenImpl<true>(screen, context, owns_context, creation_flags, adapter);
233 HRESULT STDMETHODCALLTYPE GalliumD3D10DeviceCreate1(struct pipe_screen* screen, struct pipe_context* context, BOOL owns_context, unsigned creation_flags, IDXGIAdapter* adapter, ID3D10Device1** ppDevice) argument
235 if(creation_flags & D3D10_CREATE_DEVICE_SINGLETHREADED)
236 *ppDevice = new GalliumD3D10Device<false>(screen, context, owns_context, creation_flags, adapter);
238 *ppDevice = new GalliumD3D10Device<true>(screen, context, owns_context, creation_flags, adapter);
/external/chromium_org/chrome/browser/extensions/
H A Ddefault_apps.h49 int creation_flags);
H A Ddefault_apps.cc142 int creation_flags)
144 download_location, creation_flags),
137 Provider(Profile* profile, VisitorInterface* service, extensions::ExternalLoader* loader, extensions::Manifest::Location crx_location, extensions::Manifest::Location download_location, int creation_flags) argument
H A Dextension_browsertest.h178 extensions::Extension::InitFromValueFlags creation_flags) {
180 expected_change, install_source, browser(), creation_flags, false);
311 extensions::Extension::InitFromValueFlags creation_flags);
325 extensions::Extension::InitFromValueFlags creation_flags,
174 InstallExtensionWithSourceAndFlags( const base::FilePath& path, int expected_change, extensions::Manifest::Location install_source, extensions::Extension::InitFromValueFlags creation_flags) argument
H A Dexternal_provider_impl.h42 int creation_flags);
H A Dexternal_provider_impl.cc72 int creation_flags)
79 creation_flags_(creation_flags),
197 int creation_flags = creation_flags_; local
201 creation_flags |= Extension::FROM_BOOKMARK;
206 creation_flags |= Extension::FROM_WEBSTORE;
257 crx_location_, creation_flags,
275 extension_id, update_url, download_location_, creation_flags,
66 ExternalProviderImpl( VisitorInterface* service, const scoped_refptr<ExternalLoader>& loader, Profile* profile, Manifest::Location crx_location, Manifest::Location download_location, int creation_flags) argument
H A Dsandboxed_unpacker.h83 int creation_flags,
/external/chromium_org/chrome/common/extensions/
H A Dextension_messages.cc28 creation_flags(Extension::NO_FLAGS){}
43 creation_flags(extension->creation_flags()) {
49 Extension::Create(path, location, *manifest, creation_flags, error);
232 WriteParam(m, p.creation_flags);
245 ReadParam(m, iter, &p->creation_flags) &&
H A Dsync_type_unittest.cc35 int creation_flags,
72 extension_path, location, source, creation_flags, &error);
87 int creation_flags) {
90 creation_flags, -1, false, "");
29 MakeSyncTestExtensionWithPluginPermission( SyncTestExtensionType type, const GURL& update_url, const GURL& launch_url, Manifest::Location location, const base::FilePath& extension_path, int creation_flags, int num_plugins, bool has_plugin_permission, const std::string& expected_error) argument
81 MakeSyncTestExtension( SyncTestExtensionType type, const GURL& update_url, const GURL& launch_url, Manifest::Location location, const base::FilePath& extension_path, int creation_flags) argument
/external/chromium_org/win8/metro_driver/
H A Ddirect3d_helper.cc56 unsigned int creation_flags = D3D11_CREATE_DEVICE_BGRA_SUPPORT; local
74 creation_flags,
/external/chromium_org/chrome/utility/extensions/
H A Dunpacker.h32 int creation_flags);
/external/chromium_org/sandbox/win/src/
H A Dprocess_thread_interception.cc410 DWORD creation_flags,
417 parameter, creation_flags, thread_id);
427 creation_flags & CREATE_SUSPENDED,
405 TargetCreateThread(CreateThreadFunction orig_CreateThread, LPSECURITY_ATTRIBUTES thread_attributes, SIZE_T stack_size, LPTHREAD_START_ROUTINE start_address, PVOID parameter, DWORD creation_flags, LPDWORD thread_id) argument
/external/chromium_org/chrome/utility/
H A Dchrome_content_utility_client.h47 int location, int creation_flags);

Completed in 1195 milliseconds

12