Home
last modified time | relevance | path

Searched refs:ninfo (Results 1 – 9 of 9) sorted by relevance

/external/strace/
Dmtd.c213 struct nand_oobinfo ninfo; in mtd_ioctl() local
220 if (umove_or_printaddr(tcp, arg, &ninfo)) in mtd_ioctl()
224 printxval(mtd_nandecc_options, ninfo.useecc, "MTD_NANDECC_???"); in mtd_ioctl()
225 tprintf(", eccbytes=%#" PRIx32, ninfo.eccbytes); in mtd_ioctl()
228 for (i = 0; i < ARRAY_SIZE(ninfo.oobfree); ++i) { in mtd_ioctl()
234 for (j = 0; j < ARRAY_SIZE(ninfo.oobfree[0]); ++j) { in mtd_ioctl()
237 tprintf("%#" PRIx32, ninfo.oobfree[i][j]); in mtd_ioctl()
242 for (i = 0; i < ARRAY_SIZE(ninfo.eccpos); ++i) { in mtd_ioctl()
245 tprintf("%#" PRIx32, ninfo.eccpos[i]); in mtd_ioctl()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTZDBTimeZoneNames.java241 TZDBNameInfo ninfo = values.next(); in handlePrefixMatch() local
243 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
254 if (ninfo.parseRegions == null) { in handlePrefixMatch()
258 match = defaultRegionMatch = ninfo; in handlePrefixMatch()
267 for (String region : ninfo.parseRegions) { in handlePrefixMatch()
269 match = ninfo; in handlePrefixMatch()
278 match = ninfo; in handlePrefixMatch()
DTimeZoneNamesImpl.java525 NameInfo ninfo = values.next(); in handlePrefixMatch() local
526 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
530 if (ninfo.tzID != null) { in handlePrefixMatch()
531 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength); in handlePrefixMatch()
533 assert(ninfo.mzID != null); in handlePrefixMatch()
534 minfo = new MatchInfo(ninfo.type, null, ninfo.mzID, matchLength); in handlePrefixMatch()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTZDBTimeZoneNames.java243 TZDBNameInfo ninfo = values.next(); in handlePrefixMatch() local
245 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
256 if (ninfo.parseRegions == null) { in handlePrefixMatch()
260 match = defaultRegionMatch = ninfo; in handlePrefixMatch()
269 for (String region : ninfo.parseRegions) { in handlePrefixMatch()
271 match = ninfo; in handlePrefixMatch()
280 match = ninfo; in handlePrefixMatch()
DTimeZoneNamesImpl.java527 NameInfo ninfo = values.next(); in handlePrefixMatch() local
528 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
532 if (ninfo.tzID != null) { in handlePrefixMatch()
533 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength); in handlePrefixMatch()
535 assert(ninfo.mzID != null); in handlePrefixMatch()
536 minfo = new MatchInfo(ninfo.type, null, ninfo.mzID, matchLength); in handlePrefixMatch()
/external/google-breakpad/src/client/solaris/handler/
Dsolaris_lwp.cc254 long ninfo; in Lwp_iter_all() local
270 for (ninfo = Lphp->pr_nent; ninfo != 0; --ninfo) { in Lwp_iter_all()
/external/ltrace/
Dread_config_file.c543 struct arg_type_info *ninfo = malloc(sizeof(*ninfo)); in unshare_type_info() local
544 if (ninfo == NULL || type_clone(ninfo, *infop) < 0) { in unshare_type_info()
547 free(ninfo); in unshare_type_info()
550 *infop = ninfo; in unshare_type_info()
Dtype.c327 struct arg_type_info *ninfo; in type_clone() local
328 if (type_alloc_and_clone(&ninfo, info->u.ptr_info.info, in type_clone()
331 type_init_pointer(retp, ninfo, info->u.ptr_info.own_info); in type_clone()
/external/icu/icu4c/source/i18n/
Dtznames_impl.cpp1648 TZDBNameInfo *ninfo = (TZDBNameInfo *)node->getValue(i); in handleMatch() local
1649 if (ninfo == NULL) { in handleMatch()
1652 if ((ninfo->type & fTypes) != 0) { in handleMatch()
1660 if (ninfo->parseRegions == NULL) { in handleMatch()
1664 match = defaultRegionMatch = ninfo; in handleMatch()
1673 for (int32_t i = 0; i < ninfo->nRegions; i++) { in handleMatch()
1674 const char *region = ninfo->parseRegions[i]; in handleMatch()
1676 match = ninfo; in handleMatch()
1685 match = ninfo; in handleMatch()