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

1 2

  /external/grpc-grpc/src/core/lib/security/util/
json_util.h 35 const char* prop_name);
37 // Copies the value of the json child property specified by prop_name.
40 const char* prop_name, char** copied_value);
json_util.cc 29 const char* prop_name) {
36 if (strcmp(child->key, prop_name) == 0) break;
39 gpr_log(GPR_ERROR, "Invalid or missing %s property.", prop_name);
46 const char* prop_name,
48 const char* prop_value = grpc_json_get_string_property(json, prop_name);
  /external/u-boot/lib/
fdtdec_common.c 21 int fdtdec_get_int(const void *blob, int node, const char *prop_name,
27 debug("%s: %s: ", __func__, prop_name);
28 cell = fdt_getprop(blob, node, prop_name, &len);
39 unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
45 debug("%s: %s: ", __func__, prop_name);
46 cell = fdt_getprop(blob, node, prop_name, &len);
fdtdec.c 86 const char *prop_name, int index, int na,
95 debug("%s: %s: ", __func__, prop_name);
107 prop = fdt_getprop(blob, node, prop_name, &len);
142 int node, const char *prop_name,
164 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
169 const char *prop_name, int index,
183 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
188 const char *prop_name, fdt_size_t *sizep)
192 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
197 fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
1008 char prop_name[50]; local
    [all...]
  /external/u-boot/include/
fdtdec.h 300 * @param prop_name name of property to find
310 const char *prop_name, int index, int na, int ns,
324 * @param prop_name name of property to find
332 int node, const char *prop_name, int index, fdt_size_t *sizep,
350 * @param prop_name name of property to find
358 const char *prop_name, int index, fdt_size_t *sizep,
381 * @param prop_name name of property to find
385 const char *prop_name);
408 * @param prop_name name of property to find
413 const char *prop_name, fdt_size_t *sizep)
    [all...]
  /external/python/oauth2client/oauth2client/
clientsecrets.py 98 for prop_name in VALID_CLIENT[client_type]['required']:
99 if prop_name not in client_info:
102 prop_name, client_type))
103 for prop_name in VALID_CLIENT[client_type]['string']:
104 if client_info[prop_name].startswith('[['):
106 'Property "{0}" is not configured.'.format(prop_name))
  /external/v8/infra/testing/
PRESUBMIT.py 57 def _check_properties(error_msg, src_dict, prop_name, supported_keys):
58 properties = src_dict.get(prop_name, {})
60 return error_msg('Value for %s must be a dict' % prop_name)
64 def _check_int_range(error_msg, src_dict, prop_name, lower_bound=None,
66 if prop_name not in src_dict:
70 value = int(src_dict[prop_name])
72 return error_msg('If specified, %s must be an int' % prop_name)
74 return error_msg('If specified, %s must be >=%d' % (prop_name, lower_bound))
76 return error_msg('If specified, %s must be <=%d' % (prop_name, upper_bound))
  /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/freetype/include/freetype/internal/services/
svbdf.h 38 const char* prop_name,
  /external/drm_hwcomposer/
drmdevice.h 66 int GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
68 int GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name,
70 int GetConnectorProperty(const DrmConnector &connector, const char *prop_name,
85 int GetProperty(uint32_t obj_id, uint32_t obj_type, const char *prop_name,
drmdevice.cpp 447 const char *prop_name, DrmProperty *property) {
459 if (!strcmp(p->name, prop_name)) {
470 int DrmDevice::GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
472 return GetProperty(plane.id(), DRM_MODE_OBJECT_PLANE, prop_name, property);
475 int DrmDevice::GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name,
477 return GetProperty(crtc.id(), DRM_MODE_OBJECT_CRTC, prop_name, property);
481 const char *prop_name,
483 return GetProperty(connector.id(), DRM_MODE_OBJECT_CONNECTOR, prop_name,
  /external/freetype/include/freetype/
ftbdf.h 203 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/cldr/tools/scripts/
cldr-svnprops-check.py 125 prop_name, prop_val = prop.split("=", 1)
128 prop_name, prop_val = prop, ""
129 prop_name = prop_name.strip()
134 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...]
  /external/u-boot/drivers/tpm/
tpm_tis_sandbox.c 81 char prop_name[20]; local
83 sprintf(prop_name, "nvdata%d", i);
84 prop = fdt_getprop(blob, node, prop_name, &len);
111 char prop_name[20]; local
113 sprintf(prop_name, "nvdata%d", i);
114 fdt_setprop(blob, node, prop_name, g_state.nvdata[i],
  /external/u-boot/common/
image-fit.c 111 char *prop_name, int err)
114 prop_name, (ulong)fit, noffset, fit_get_name(fit, noffset, NULL),
1801 const char *prop_name; local
    [all...]
  /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),
  /external/u-boot/scripts/dtc/pylibfdt/
libfdt.i_shipped 291 def delprop(self, nodeoffset, prop_name):
296 prop_name: Name of property to delete
301 return check_err(fdt_delprop(self._fdt, nodeoffset, prop_name))
303 def getprop(self, nodeoffset, prop_name, quiet=()):
308 prop_name: Name of property to get
317 pdata = check_err_null(fdt_getprop(self._fdt, nodeoffset, prop_name),
  /external/u-boot/arch/sandbox/include/asm/
state.h 192 * @param prop_name Property to write
196 int state_setprop(int node, const char *prop_name, const void *data, int size);
  /external/u-boot/drivers/pinctrl/
pinctrl-sti.c 213 const char *prop_name; local
231 fdt_getprop_by_offset(blob, property_offset, &prop_name,
236 prop_name, "#gpio-cells",
253 prop_name, cells,
  /external/u-boot/arch/sandbox/cpu/
state.c 308 int state_setprop(int node, const char *prop_name, const void *data, int size)
314 fdt_getprop(state->state_fdt, node, prop_name, &len);
317 ret = state_ensure_space(size - len + strlen(prop_name) + 32);
323 ret = fdt_setprop(blob, node, prop_name, data, size);
326 __func__, prop_name, fdt_get_name(blob, node, NULL),
  /device/google/cuttlefish_common/host/commands/launch/
ril_config.cc 126 std::string BuildPropertyDefinition(const std::string& prop_name,
129 stream << prop_name << "=" << prop_value;

Completed in 1393 milliseconds

1 2