HomeSort by relevance Sort by last modified time
    Searched refs:prop_name (Results 1 - 25 of 37) sorted by null

1 2

  /hardware/qcom/display/msm8909/include/
display_properties.h 38 #define DISPLAY_PROP(prop_name) DISP_PROP_PREFIX prop_name
39 #define GRALLOC_PROP(prop_name) GRALLOC_PROP_PREFIX prop_name
40 #define RO_DISPLAY_PROP(prop_name) RO_DISP_PROP_PREFIX prop_name
41 #define PERSIST_DISPLAY_PROP(prop_name) PERSIST_DISP_PROP_PREFIX prop_name
  /system/core/init/
action_parser.cpp 37 bool IsActionableProperty(Subcontext* subcontext, const std::string& prop_name) {
44 if (kExportedActionableProperties.count(prop_name) == 1) {
48 if (android::base::StartsWith(prop_name, prefix)) {
58 std::string prop_name(trigger.substr(prop_str.length()));
59 size_t equal_pos = prop_name.find('=');
64 std::string prop_value(prop_name.substr(equal_pos + 1));
65 prop_name.erase(equal_pos);
67 if (!IsActionableProperty(subcontext, prop_name)) {
68 return Error() << "unexported property tigger found: " << prop_name;
71 if (auto [it, inserted] = property_triggers->emplace(prop_name, prop_value); !inserted)
    [all...]
util.cpp 330 std::string prop_name; local
340 prop_name = std::string(c, end);
342 size_t def = prop_name.find(":-");
343 if (def < prop_name.size()) {
344 def_val = prop_name.substr(def + 2);
345 prop_name = prop_name.substr(0, def);
348 prop_name = c;
350 c += prop_name.size();
353 if (prop_name.empty())
    [all...]
  /external/pdfium/fxjs/
CJX_Define.h 34 #define JS_PROP(prop_name) \
35 void prop_name(CFXJSE_Value* pValue, bool bSetting, XFA_Attribute eAttribute)
JS_Define.h 145 #define JS_STATIC_PROP(err_name, prop_name, class_name) \
146 static void get_##prop_name##_static( \
149 JSPropGetter<class_name, &class_name::get_##prop_name>( \
152 static void set_##prop_name##_static( \
155 JSPropSetter<class_name, &class_name::set_##prop_name>( \
  /external/chromium-trace/catapult/devil/devil/android/tools/
system_app_test.py 40 def dict_setprop(prop_name, value):
41 system_props[prop_name] = value
43 def dict_getprop(prop_name):
44 return system_props.get(prop_name, '')
  /external/drm_hwcomposer/
drmresources.h 64 int GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
66 int GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name,
68 int GetConnectorProperty(const DrmConnector &connector, const char *prop_name,
80 int GetProperty(uint32_t obj_id, uint32_t obj_type, const char *prop_name,
drmresources.cpp 389 const char *prop_name, DrmProperty *property) {
401 if (!strcmp(p->name, prop_name)) {
412 int DrmResources::GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
414 return GetProperty(plane.id(), DRM_MODE_OBJECT_PLANE, prop_name, property);
417 int DrmResources::GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name,
419 return GetProperty(crtc.id(), DRM_MODE_OBJECT_CRTC, prop_name, property);
423 const char *prop_name,
425 return GetProperty(connector.id(), DRM_MODE_OBJECT_CONNECTOR, prop_name,
  /external/freetype/include/freetype/
ftbdf.h 200 const char* prop_name,
  /external/freetype/include/freetype/internal/services/
svbdf.h 38 const char* prop_name,
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftbdf.h 200 const char* prop_name,
  /external/freetype/src/base/
ftbdf.c 64 const char* prop_name,
83 error = service->get_property( face, prop_name, aproperty );
  /external/autotest/client/site_tests/platform_CrosDisksDBus/
platform_CrosDisksDBus.py 53 for (prop_name, prop_value_type) in disk_properties:
55 if prop_name not in disk:
56 raise error.TestFail("disk.%s not found" % prop_name)
59 prop_value = disk[prop_name]
63 % (prop_name, type(prop_value), prop_value_type))
  /external/icu/icu4c/source/tools/
icu-svnprops-check.py 69 prop_name, prop_val = prop.split("=", 1)
72 prop_name, prop_val = prop, ""
73 prop_name = prop_name.strip()
78 proplist.append((prop_name, prop_val))
  /bionic/tests/
system_properties_test.cpp 168 char prop_name[PROP_NAME_MAX]; local
175 ret = snprintf(prop_name, PROP_NAME_MAX - 1, "property_%d", count);
176 memset(prop_name + ret, 'a', PROP_NAME_MAX - 1 - ret);
179 prop_name[PROP_NAME_MAX - 1] = 0;
182 ret = system_properties.Add(prop_name, PROP_NAME_MAX - 1, prop_value, PROP_VALUE_MAX - 1);
193 ret = snprintf(prop_name, PROP_NAME_MAX - 1, "property_%d", i);
194 memset(prop_name + ret, 'a', PROP_NAME_MAX - 1 - ret);
197 prop_name[PROP_NAME_MAX - 1] = 0;
201 ASSERT_EQ(PROP_VALUE_MAX - 1, system_properties.Get(prop_name, prop_value_ret));
260 char prop_name[PROP_NAME_MAX] local
    [all...]
  /hardware/libhardware/
hardware.c 178 char prop_name[PATH_MAX] = {0}; local
194 snprintf(prop_name, sizeof(prop_name), "ro.hardware.%s", name);
195 if (property_get(prop_name, prop, NULL) > 0) {
  /external/dtc/pylibfdt/
libfdt.i 317 def delprop(self, nodeoffset, prop_name):
322 prop_name: Name of property to delete
327 return check_err(fdt_delprop(self._fdt, nodeoffset, prop_name))
329 def getprop(self, nodeoffset, prop_name, quiet=()):
334 prop_name: Name of property to get
343 pdata = check_err_null(fdt_getprop(self._fdt, nodeoffset, prop_name),
  /hardware/qcom/display/msm8909/gralloc/
gralloc_priv.h 27 #define GRALLOC_PROP(prop_name) GRALLOC_PROP_PREFIX prop_name
  /system/libufdt/
ufdt_prop_dict.c 54 const char *prop_name = fdt_string(dict->fdtp, fdt32_to_cpu(prop->nameoff)); local
55 if (dto_strcmp(prop_name, name) == 0) return prop_ptr;
  /external/ltp/tools/pounder21/src/xbonkers/
xbonkers.c 84 char *prop_name, unsigned long *size,
139 char *prop_name, unsigned long *size,
151 xa_prop_name = XInternAtom(disp, prop_name, False);
157 fprintf(stderr, "Cannot get %s property.\n", prop_name);
162 fprintf(stderr, "Invalid type of %s property.\n", prop_name);
170 if (ret_format == 32 && strcmp(prop_name, "_NET_CLIENT_LIST") == 0 &&
  /external/v8/tools/
generate-builtins-tests.py 102 for prop_name in obj["properties"]:
103 prop = obj["properties"][prop_name]
  /hardware/intel/img/psb_video/src/x11/
psb_xrandr.c 103 char* prop_name; local
126 prop_name = XGetAtomName(psb_xrandr_info->dpy, props[i]);
129 if (!strcmp(prop_name, "ExtVideoMode")) {
132 } else if (!strcmp(prop_name, "ExtVideoMode_Xres")) {
135 } else if (!strcmp(prop_name, "ExtVideoMode_Yres")) {
138 } else if (!strcmp(prop_name, "ExtVideoMode_X_Offset")) {
141 } else if (!strcmp(prop_name, "ExtVideoMode_Y_Offset")) {
144 } else if (!strcmp(prop_name, "ExtVideoMode_Center")) {
147 } else if (!strcmp(prop_name, "ExtVideoMode_SubTitle")) {
150 } else if (!strcmp(prop_name, "ExtDesktopMode"))
    [all...]
  /development/python-packages/adb/
device.py 507 def get_prop(self, prop_name):
508 output = split_lines(self.shell(['getprop', prop_name])[0])
517 def set_prop(self, prop_name, value):
518 self.shell(['setprop', prop_name, value])
  /tools/test/connectivity/acts/framework/acts/controllers/
adb.py 231 def getprop(self, prop_name):
237 prop_name: A string that is the name of the property to get.
243 return self.shell("getprop %s" % prop_name)
  /external/autotest/client/cros/networking/
shill_xmlrpc_server.py 428 def get_dbus_property_on_device(self, wifi_interface, prop_name):
432 @param prop_name: the name of the property.
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):
454 @param prop_name: the name of the property.
465 prop_name,

Completed in 660 milliseconds

1 2