Home
last modified time | relevance | path

Searched refs:prop_name (Results 1 – 17 of 17) sorted by relevance

/external/drm_hwcomposer/
Ddrmresources.h56 int GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
58 int GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name,
60 int GetConnectorProperty(const DrmConnector &connector, const char *prop_name,
72 int GetProperty(uint32_t obj_id, uint32_t obj_type, const char *prop_name,
Ddrmresources.cpp384 const char *prop_name, DrmProperty *property) { in GetProperty() argument
396 if (!strcmp(p->name, prop_name)) { in GetProperty()
407 int DrmResources::GetPlaneProperty(const DrmPlane &plane, const char *prop_name, in GetPlaneProperty() argument
409 return GetProperty(plane.id(), DRM_MODE_OBJECT_PLANE, prop_name, property); in GetPlaneProperty()
412 int DrmResources::GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name, in GetCrtcProperty() argument
414 return GetProperty(crtc.id(), DRM_MODE_OBJECT_CRTC, prop_name, property); in GetCrtcProperty()
418 const char *prop_name, in GetConnectorProperty() argument
420 return GetProperty(connector.id(), DRM_MODE_OBJECT_CONNECTOR, prop_name, in GetConnectorProperty()
/external/icu/icu4c/source/tools/
Dicu-svnprops-check.py127 prop_name, prop_val = prop.split("=", 1)
130 prop_name, prop_val = prop, ""
131 prop_name = prop_name.strip()
136 proplist.append((prop_name, prop_val))
/external/autotest/client/site_tests/platform_CrosDisksDBus/
Dplatform_CrosDisksDBus.py48 for (prop_name, prop_value_type) in disk_properties:
50 if prop_name not in disk:
51 raise error.TestFail("disk.%s not found" % prop_name)
54 prop_value = disk[prop_name]
58 % (prop_name, type(prop_value), prop_value_type))
/external/pdfium/third_party/freetype/src/base/
Dftbdf.c64 const char* prop_name, in FT_Get_BDF_Property() argument
83 error = service->get_property( face, prop_name, aproperty ); in FT_Get_BDF_Property()
/external/freetype/src/base/
Dftbdf.c64 const char* prop_name, in FT_Get_BDF_Property() argument
83 error = service->get_property( face, prop_name, aproperty ); in FT_Get_BDF_Property()
/external/ltp/tools/pounder21/src/xbonkers/
Dxbonkers.c84 char *prop_name, unsigned long *size,
139 char *prop_name, unsigned long *size, in get_property() argument
151 xa_prop_name = XInternAtom(disp, prop_name, False); in get_property()
157 fprintf(stderr, "Cannot get %s property.\n", prop_name); in get_property()
162 fprintf(stderr, "Invalid type of %s property.\n", prop_name); in get_property()
170 if (ret_format == 32 && strcmp(prop_name, "_NET_CLIENT_LIST") == 0 && in get_property()
/external/pdfium/fpdfsdk/javascript/
DJS_Define.h86 #define JS_STATIC_PROP(prop_name, class_name) \ argument
87 static void get_##prop_name##_static( \
90 JSPropGetter<class_name, &class_name::prop_name>(#prop_name, #class_name, \
93 static void set_##prop_name##_static( \
96 JSPropSetter<class_name, &class_name::prop_name>(#prop_name, #class_name, \
/external/autotest/client/cros/networking/
Dshill_xmlrpc_server.py428 def get_dbus_property_on_device(self, wifi_interface, prop_name): argument
442 if prop_name not in object_properties:
446 object_properties[prop_name])
450 def set_dbus_property_on_device(self, wifi_interface, prop_name, value): argument
465 prop_name,
/external/v8/tools/
Dgenerate-builtins-tests.py102 for prop_name in obj["properties"]:
103 prop = obj["properties"][prop_name]
/external/pdfium/third_party/freetype/include/freetype/
Dftbdf.h200 const char* prop_name,
/external/freetype/include/freetype/
Dftbdf.h200 const char* prop_name,
/external/freetype/include/freetype/internal/services/
Dsvbdf.h38 const char* prop_name,
/external/pdfium/third_party/freetype/include/freetype/internal/services/
Dsvbdf.h38 const char* prop_name,
/external/dtc/
Dfdtput.c283 static int delete_prop(char *blob, const char *node_name, const char *prop_name) in delete_prop() argument
293 node = fdt_delprop(blob, node, prop_name); in delete_prop()
/external/autotest/server/cros/network/
Dwifi_client.py1395 def __init__(self, shill_proxy, interface, prop_name, value): argument
1407 self._prop_name = prop_name
1449 def __init__(self, shill_proxy, prop_name, value): argument
1458 self._prop_name = prop_name
/external/autotest/client/site_tests/firmware_TouchMTB/
Dvalidators.py1339 prop_name = EV_STRINGS[EV_ABS].get(prop, prop)
1340 self.log_details(' %s=%6d' % (prop_name, slot[prop].value))