HomeSort by relevance Sort by last modified time
    Searched defs:prop (Results 76 - 100 of 852) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 419 XMPNode prop = (XMPNode) it.next(); local
421 if (canBeRDFAttrProp(prop))
425 write(prop.getName());
427 appendNodeValue(prop.getValue(), true);
    [all...]
  /device/generic/goldfish/vibrator/
qemu.c 160 char prop[PROPERTY_VALUE_MAX]; local
167 if (property_get(key, prop, "") == 0) {
173 "/dev/%s", prop);
175 D("%s device name too long: '%s'", name, prop);
  /device/google/marlin/camera/QCamera2/
QCamera2Factory.cpp 78 char prop[PROPERTY_VALUE_MAX]; local
79 property_get("persist.camera.HAL3.enabled", prop, "1");
80 int isHAL3Enabled = atoi(prop);
84 property_get("persist.camera.dual.camera", prop, propDefault);
85 bDualCamera = atoi(prop);
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt_sw.c 225 struct fdt_property *prop; local
234 prop = _fdt_grab_space(fdt, sizeof(*prop) + FDT_TAGALIGN(len));
235 if (! prop)
238 prop->tag = cpu_to_fdt32(FDT_PROP);
239 prop->nameoff = cpu_to_fdt32(nameoff);
240 prop->len = cpu_to_fdt32(len);
241 memcpy(prop->data, val, len);
271 struct fdt_property *prop = local
275 nameoff = fdt32_to_cpu(prop->nameoff)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaDec.h 50 CLzmaProps prop; member in struct:__anon5341
135 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt_sw.c 193 struct fdt_property *prop; local
202 prop = _fdt_grab_space(fdt, sizeof(*prop) + FDT_TAGALIGN(len));
203 if (! prop)
206 prop->tag = cpu_to_fdt32(FDT_PROP);
207 prop->nameoff = cpu_to_fdt32(nameoff);
208 prop->len = cpu_to_fdt32(len);
209 memcpy(prop->data, val, len);
239 struct fdt_property *prop = local
243 nameoff = fdt32_to_cpu(prop->nameoff);
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 50 CLzmaProps prop; member in struct:__anon7041
135 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.h 50 CLzmaProps prop; member in struct:__anon8024
135 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
  /external/dtc/libfdt/
fdt_sw.c 225 struct fdt_property *prop; local
234 prop = _fdt_grab_space(fdt, sizeof(*prop) + FDT_TAGALIGN(len));
235 if (! prop)
238 prop->tag = cpu_to_fdt32(FDT_PROP);
239 prop->nameoff = cpu_to_fdt32(nameoff);
240 prop->len = cpu_to_fdt32(len);
241 *valp = prop->data;
283 struct fdt_property *prop = local
287 nameoff = fdt32_to_cpu(prop->nameoff)
    [all...]
  /external/dtc/tests/
testutils.c 90 const struct fdt_property *prop; local
96 prop = fdt_get_property(fdt, nodeoffset, name, &retlen);
97 verbose_printf("pointer %p\n", prop);
98 if (! prop)
102 tag = fdt32_to_cpu(prop->tag);
103 nameoff = fdt32_to_cpu(prop->nameoff);
104 proplen = fdt32_to_cpu(prop->len);
120 if (memcmp(val, prop->data, len) != 0)
  /external/dtc/
treesource.c 195 static void write_propval(FILE *f, struct property *prop)
197 int len = prop->val.len;
198 const char *p = prop->val.val;
199 struct marker *m = prop->val.markers;
217 if ((m->offset > 0) && (prop->val.val[m->offset - 1] != '\0'))
226 write_propval_string(f, prop->val);
228 write_propval_cells(f, prop->val);
230 write_propval_bytes(f, prop->val);
238 struct property *prop; local
250 for_each_property(tree, prop) {
    [all...]
  /external/freetype/src/gxvalid/
gxvprop.c 5 /* TrueTypeGX/AAT prop table validation (body). */
59 #define GXV_PROP_DATA( field ) GXV_TABLE_DATA( prop, field )
251 /***** prop TABLE *****/
267 GXV_prop_Data prop = &proprec; local
275 gxvalid->table_data = prop;
278 FT_TRACE3(( "validating `prop' table\n" ));
  /external/ipsec-tools/src/racoon/
proposal.h 47 * head ---> prop[.......] ---> prop[...] ---> prop[...] ---> ...
143 struct isakmp_pl_p *prop; member in struct:prop_pair
  /external/lzma/C/
LzmaDec.h 50 CLzmaProps prop; member in struct:__anon28724
135 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
  /external/lzma/CPP/7zip/Common/
CreateCoder.cpp 49 NWindows::NCOM::CPropVariant prop; local
50 RINOK(codecsInfo->GetProperty(index, propID, &prop));
51 if (prop.vt == VT_EMPTY)
53 else if (prop.vt == VT_UI4)
54 res = prop.ulVal;
62 NWindows::NCOM::CPropVariant prop; local
63 RINOK(codecsInfo->GetProperty(index, propID, &prop));
64 if (prop.vt == VT_EMPTY)
66 else if (prop.vt == VT_BOOL)
67 res = VARIANT_BOOLToBool(prop.boolVal);
88 NWindows::NCOM::CPropVariant prop; local
125 NWindows::NCOM::CPropVariant prop; local
    [all...]
MethodProps.h 13 HRESULT PROPVARIANT_to_bool(const PROPVARIANT &prop, bool &dest);
15 HRESULT ParsePropToUInt32(const UString &name, const PROPVARIANT &prop, UInt32 &resValue);
17 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 defaultNumThreads, UInt32 &numThreads);
45 CProp &prop = Props.AddNew(); local
46 prop.IsOptional = true;
47 prop.Id = propid;
48 prop.Value = s;
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
RadioModule.java 71 RadioManager.ModuleProperties prop = Convert.propertiesFromHal(idx, fqName, local
74 return new RadioModule(service, prop);
  /hardware/interfaces/health/2.0/default/
Health.cpp 88 struct BatteryProperty prop; local
91 status_t err = monitor->getProperty(static_cast<int>(id), &prop);
96 ret = static_cast<T>(prop.valueInt64);
168 struct BatteryProperty prop; local
169 status_t ret = battery_monitor_->getProperty(BATTERY_PROP_CURRENT_AVG, &prop);
171 currentAvg = static_cast<int32_t>(prop.valueInt64);
250 struct BatteryProperty prop; local
251 status_t ret = battery_monitor_->getProperty(BATTERY_PROP_CURRENT_AVG, &prop);
253 currentAvg = static_cast<int32_t>(prop.valueInt64);
  /hardware/qcom/audio/post_proc/
equalizer.c 352 int16_t *prop = (int16_t *)value; local
353 prop[0] = (int16_t)equalizer_get_preset(eq_ctxt);
354 prop[1] = (int16_t)NUM_EQ_BANDS;
356 prop[2 + i] = (int16_t)equalizer_get_band_level(eq_ctxt, i);
425 int16_t *prop = (int16_t *)value; local
426 if ((int)prop[0] >= equalizer_get_num_presets(eq_ctxt)) {
430 if (prop[0] >= 0) {
431 equalizer_set_preset(eq_ctxt, (int)prop[0]);
440 if ((int)prop[1] != NUM_EQ_BANDS) {
445 equalizer_set_band_level(eq_ctxt, i, (int)prop[2 + i])
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/
QCamera2Factory.cpp 86 char prop[PROPERTY_VALUE_MAX]; local
87 property_get("persist.camera.HAL3.enabled", prop, "1");
88 int isHAL3Enabled = atoi(prop);
95 property_get("persist.camera.dual.camera", prop, propDefault);
96 bDualCamera = atoi(prop);
  /platform_testing/libraries/power-helper/src/com/android/helper/
PowerTestHelper.java 113 Properties prop = new Properties(); local
116 prop.load(inputStream);
117 value = prop.getProperty(key);
  /system/libufdt/
ufdt_node.c 26 const struct fdt_property *prop = (const struct fdt_property *)fdt_tag_ptr; local
31 res->name = fdt_string(fdtp, fdt32_to_cpu(prop->nameoff));
119 const struct fdt_property *prop = (struct fdt_property *)node->fdt_tag_ptr; local
121 *out_len = fdt32_to_cpu(prop->len);
123 return (char *)prop->data;
271 dto_print("PROP ");
  /tools/tradefederation/core/src/com/android/tradefed/device/
DumpsysPackageReceiver.java 117 String[] prop = line.split("="); local
118 if (prop.length == 2) {
119 mPkgInfo.addAttribute(prop[0], prop[1]);
120 } else if (prop.length > 2) {
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
RgbPlayerActivity.java 56 * VideDumpView class. It reads the "/sdcard/mediadump/prop.xml" to get
111 Properties prop = new Properties(); local
113 prop.loadFromXML(new FileInputStream("/sdcard/mediadump/prop.xml"));
119 mStartX = Integer.parseInt(prop.getProperty("startX"));
120 mStartY = Integer.parseInt(prop.getProperty("startY"));
121 mWidth = Integer.parseInt(prop.getProperty("width"));
122 mHeight = Integer.parseInt(prop.getProperty("height"));
123 mBytesPerPixel = Integer.parseInt(prop.getProperty("bytesPerPixel"));
124 mFrameRate = Integer.parseInt(prop.getProperty("frameRate"))
    [all...]
  /frameworks/base/tests/net/java/com/android/server/connectivity/
TetheringTest.java 247 final LinkProperties prop = new LinkProperties(); local
248 prop.setInterfaceName(TEST_MOBILE_IFNAME);
251 prop.addRoute(new RouteInfo(new IpPrefix(Inet4Address.ANY, 0),
256 prop.addDnsServer(NetworkUtils.numericToInetAddress("2001:db8::2"));
257 prop.addLinkAddress(
260 prop.addRoute(new RouteInfo(new IpPrefix(Inet6Address.ANY, 0),
270 prop.addStackedLink(stackedLink);
276 return new NetworkState(info, prop, capabilities, new Network(100), null, "netid");
    [all...]

Completed in 949 milliseconds

1 2 34 5 6 7 8 91011>>