cimtype 116 source4/lib/wmi/tools/wmic.c char *string_CIMVAR(TALLOC_CTX *mem_ctx, union CIMVAR *v, enum CIMTYPE_ENUMERATION cimtype) cimtype 118 source4/lib/wmi/tools/wmic.c switch (cimtype) { cimtype 208 source4/lib/wmi/tools/wmic.c s = string_CIMVAR(ctx, &co[i]->instance->data[j], co[i]->obj_class->properties[j].property.desc->cimtype & CIM_TYPEMASK); cimtype 183 source4/lib/wmi/wbemdata.c WERROR IWbemClassObject_Get(struct IWbemClassObject *d, TALLOC_CTX *mem_ctx, const char *name, uint32_t flags, union CIMVAR *val, enum CIMTYPE_ENUMERATION *cimtype, uint32_t *flavor) cimtype 188 source4/lib/wmi/wbemdata.c duplicate_CIMVAR(mem_ctx, &d->instance->data[i], val, d->obj_class->properties[i].property.desc->cimtype); cimtype 189 source4/lib/wmi/wbemdata.c if (cimtype != NULL) cimtype 190 source4/lib/wmi/wbemdata.c *cimtype = d->obj_class->properties[i].property.desc->cimtype; cimtype 199 source4/lib/wmi/wbemdata.c WERROR IWbemClassObject_Put(struct IWbemClassObject *d, TALLOC_CTX *mem_ctx, const char *name, uint32_t flags, union CIMVAR *val, enum CIMTYPE_ENUMERATION cimtype) cimtype 207 source4/lib/wmi/wbemdata.c if (cimtype && cimtype != wco->obj_class->properties[i].property.desc->cimtype) return WERR_INVALID_PARAM; cimtype 209 source4/lib/wmi/wbemdata.c duplicate_CIMVAR(wco->instance, val, &wco->instance->data[i], wco->obj_class->properties[i].property.desc->cimtype); cimtype 41 source4/lib/wmi/wmi.h WERROR IWbemClassObject_Get(struct IWbemClassObject *d, TALLOC_CTX *mem_ctx, const char *name, uint32_t flags, union CIMVAR *val, enum CIMTYPE_ENUMERATION *cimtype, uint32_t *flavor); cimtype 42 source4/lib/wmi/wmi.h WERROR IWbemClassObject_Put(struct IWbemClassObject *d, TALLOC_CTX *mem_ctx, const char *name, uint32_t flags, union CIMVAR *val, enum CIMTYPE_ENUMERATION cimtype); cimtype 2580 source4/lib/wmi/wmi_wrap.c static PyObject *PyObject_FromCVAR(uint32_t cimtype, union CIMVAR *cvar); cimtype 2930 source4/lib/wmi/wmi_wrap.c static PyObject *PyObject_FromCVAR(uint32_t cimtype, union CIMVAR *cvar) cimtype 2932 source4/lib/wmi/wmi_wrap.c switch (cimtype) { cimtype 2965 source4/lib/wmi/wmi_wrap.c str = talloc_asprintf(NULL, "Unsupported CIMTYPE(0x%04X)", cimtype); cimtype 2995 source4/lib/wmi/wmi_wrap.c args = Py_BuildValue("(si)", wco->obj_class->properties[i].property.name, wco->obj_class->properties[i].property.desc->cimtype & CIM_TYPEMASK); cimtype 3007 source4/lib/wmi/wmi_wrap.c value = PyObject_FromCVAR(wco->obj_class->properties[i].property.desc->cimtype & CIM_TYPEMASK, &wco->instance->data[i]);