OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WMI
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/installer/util/
wmi_unittest.cc
7
#include "chrome/installer/util/
wmi
.h"
14
EXPECT_TRUE(
WMI
::CreateLocalConnection(true, &services));
22
EXPECT_TRUE(
WMI
::CreateLocalConnection(false, &services));
30
EXPECT_TRUE(
WMI
::CreateLocalConnection(true, &wmi_services));
33
EXPECT_TRUE(
WMI
::CreateClassMethodObject(wmi_services,
wmi.h
5
//
WMI
(Windows Management and Instrumentation) is a big, complex, COM-based
12
// functionality that is needed right now which is to use
WMI
to launch a
17
// For more information about
WMI
programming:
29
class
WMI
{
31
// Creates an instance of the
WMI
service connected to the local computer and
41
// Creates a
WMI
method using from a
WMI
class named 'class_name' that
42
// contains a method named 'method_name'. Only
WMI
classes that are CIM
45
//
WMI
method that you can fill with parameter values using SetParameter.
60
// This class contains functionality of the
WMI
class 'Win32_Process
[
all
...]
wmi.cc
5
#include "chrome/installer/util/
wmi
.h"
20
bool
WMI
::CreateLocalConnection(bool set_blanket,
52
bool
WMI
::CreateClassMethodObject(IWbemServices* wmi_services,
56
// We attempt to instantiate a COM object that represents a
WMI
object plus
73
// You hit this special case if the
WMI
class is not a CIM class. MSDN
74
// sometimes tells you this. Welcome to
WMI
hell.
98
if (!
WMI
::CreateLocalConnection(true, wmi_local.Receive()))
104
if (!
WMI
::CreateClassMethodObject(wmi_local, class_name, method_name,
140
if (!
WMI
::CreateLocalConnection(true, services.Receive()))
Completed in 37 milliseconds