Home
last modified time | relevance | path

Searched refs:property_key (Results 1 – 5 of 5) sorted by relevance

/external/selinux/libselinux/src/
Dlabel_backends_android.c19 char *property_key; /* property key string */ member
36 if (strncmp(sp1->property_key, "*", 1) == 0) in cmp()
38 if (strncmp(sp2->property_key, "*", 1) == 0) in cmp()
41 size_t L1 = strlen(sp1->property_key); in cmp()
42 size_t L2 = strlen(sp2->property_key); in cmp()
61 if (!strcmp(spec_arr[jj].property_key, in nodups_specs()
62 curr_spec->property_key)) { in nodups_specs()
70 curr_spec->property_key, in nodups_specs()
77 curr_spec->property_key); in nodups_specs()
123 spec_arr[nspec].property_key = prop; in process_line()
[all …]
/external/autotest/client/cros/scripts/
Ddevice25 def set_device_property(device, property_key, value):
33 shill_proxy.ShillProxy.set_dbus_property(device, property_key, value)
37 def print_device_properties(device, property_key):
45 if property_key is None:
50 pprint.pprint({property_key:
51 shill_proxy.ShillProxy.get_dbus_property(device, property_key)},
/external/autotest/client/cros/networking/
Dshill_proxy.py285 def get_dbus_property(interface, property_key): argument
294 if property_key in properties:
295 return ShillProxy.dbus2primitive(properties[property_key])
301 def set_dbus_property(interface, property_key, value): argument
310 if property_key not in properties:
312 (property_key, interface.object_path))
314 dbus_class = properties[property_key].__class__
315 interface.SetProperty(property_key,
320 def set_optional_dbus_property(interface, property_key, value): argument
332 if property_key not in ShillProxy.MANAGER_OPTIONAL_PROPERTY_MAP:
[all …]
Dapmanager_proxy.py104 def _get_dbus_property(self, dbus_object, interface_name, property_key): argument
121 dbus.String(property_key)));
125 (property_key, interface_name))
132 property_key, argument
149 dbus.String(property_key),
154 (property_key, interface_name))
/external/autotest/client/cros/cellular/pseudomodem/
Dbearer.py43 def _AddProperty(self, property_key): argument
44 self._properties[mm1_constants.I_BEARER][property_key] = None
47 def _RemoveProperty(self, property_key): argument
49 self._properties[mm1_constants.I_BEARER].pop(property_key)