Home
last modified time | relevance | path

Searched refs:cimType (Results 1 – 4 of 4) sorted by relevance

/dports/devel/jna/jna-5.7.0/contrib/platform/src/com/sun/jna/platform/win32/COM/
H A DWbemcliUtil.java322 int cimType = pType.getValue(); in enumerateProperties() local
325 values.add(vtType, cimType, property, pVal.stringValue()); in enumerateProperties()
328 values.add(vtType, cimType, property, pVal.intValue()); in enumerateProperties()
331 values.add(vtType, cimType, property, pVal.byteValue()); in enumerateProperties()
334 values.add(vtType, cimType, property, pVal.shortValue()); in enumerateProperties()
340 values.add(vtType, cimType, property, pVal.floatValue()); in enumerateProperties()
343 values.add(vtType, cimType, property, pVal.doubleValue()); in enumerateProperties()
347 values.add(vtType, cimType, property, null); in enumerateProperties()
355 values.add(vtType, cimType, property, null); in enumerateProperties()
448 private void add(int vtType, int cimType, T property, Object o) { in add() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Management/src/System/Management/
H A DPropertySet.cs413 CimType cimType = 0; in Add()
415 … object wmiValue = PropertyData.MapValueToWmiValue(propertyValue, out isArray, out cimType); in Add()
416 int wmiCimType = (int)cimType; in Add()
H A DWMIGenerator.cs5060 String GetConversionFunction(CimType cimType) in GetConversionFunction() argument
5064 switch(cimType) in GetConversionFunction()
5209 …private static string ConvertToNumericValueAndAddToArray(CimType cimType, string numericValue,Arra… in ConvertToNumericValueAndAddToArray() argument
5214 switch(cimType) in ConvertToNumericValueAndAddToArray()
/dports/net/py-impacket/impacket-0.9.17/impacket/dcerpc/v5/dcom/
H A Dwmi.py298 def getValue(cls, cimType, entry, heap): argument
300 pType = cimType & (~(CIM_ARRAY_FLAG|Inherited))
304 if cimType & CIM_ARRAY_FLAG:
312 if cimType == CIM_TYPE_ENUM.CIM_ARRAY_STRING.value:
322 elif cimType == CIM_TYPE_ENUM.CIM_ARRAY_OBJECT.value: