Home
last modified time | relevance | path

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

/external/strace/
Dmtd.c173 struct nand_oobinfo ninfo; in decode_nand_oobinfo() local
177 if (umove_or_printaddr(tcp, addr, &ninfo)) in decode_nand_oobinfo()
181 printxval(mtd_nandecc_options, ninfo.useecc, "MTD_NANDECC_???"); in decode_nand_oobinfo()
182 tprintf(", eccbytes=%#x", ninfo.eccbytes); in decode_nand_oobinfo()
185 for (i = 0; i < ARRAY_SIZE(ninfo.oobfree); ++i) { in decode_nand_oobinfo()
189 for (j = 0; j < ARRAY_SIZE(ninfo.oobfree[0]); ++j) { in decode_nand_oobinfo()
192 tprintf("%#x", ninfo.oobfree[i][j]); in decode_nand_oobinfo()
197 for (i = 0; i < ARRAY_SIZE(ninfo.eccpos); ++i) { in decode_nand_oobinfo()
200 tprintf("%#x", ninfo.eccpos[i]); in decode_nand_oobinfo()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTZDBTimeZoneNames.java257 TZDBNameInfo ninfo = values.next(); in handlePrefixMatch() local
259 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
270 if (ninfo.parseRegions == null) { in handlePrefixMatch()
274 match = defaultRegionMatch = ninfo; in handlePrefixMatch()
283 for (String region : ninfo.parseRegions) { in handlePrefixMatch()
285 match = ninfo; in handlePrefixMatch()
294 match = ninfo; in handlePrefixMatch()
DTimeZoneNamesImpl.java536 NameInfo ninfo = values.next(); in handlePrefixMatch() local
537 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
541 if (ninfo.tzID != null) { in handlePrefixMatch()
542 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength); in handlePrefixMatch()
544 assert(ninfo.mzID != null); in handlePrefixMatch()
545 minfo = new MatchInfo(ninfo.type, null, ninfo.mzID, matchLength); in handlePrefixMatch()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTZDBTimeZoneNames.java255 TZDBNameInfo ninfo = values.next(); in handlePrefixMatch() local
257 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
268 if (ninfo.parseRegions == null) { in handlePrefixMatch()
272 match = defaultRegionMatch = ninfo; in handlePrefixMatch()
281 for (String region : ninfo.parseRegions) { in handlePrefixMatch()
283 match = ninfo; in handlePrefixMatch()
292 match = ninfo; in handlePrefixMatch()
DTimeZoneNamesImpl.java534 NameInfo ninfo = values.next(); in handlePrefixMatch() local
535 if (_nameTypes != null && !_nameTypes.contains(ninfo.type)) { in handlePrefixMatch()
539 if (ninfo.tzID != null) { in handlePrefixMatch()
540 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength); in handlePrefixMatch()
542 assert(ninfo.mzID != null); in handlePrefixMatch()
543 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/icu/icu4c/source/i18n/
Dtznames_impl.cpp1926 TZDBNameInfo *ninfo = (TZDBNameInfo *)node->getValue(i); in handleMatch() local
1927 if (ninfo == NULL) { in handleMatch()
1930 if ((ninfo->type & fTypes) != 0) { in handleMatch()
1938 if (ninfo->parseRegions == NULL) { in handleMatch()
1942 match = defaultRegionMatch = ninfo; in handleMatch()
1951 for (int32_t j = 0; j < ninfo->nRegions; j++) { in handleMatch()
1952 const char *region = ninfo->parseRegions[j]; in handleMatch()
1954 match = ninfo; in handleMatch()
1963 match = ninfo; in handleMatch()
/external/openssh/
Dkex.c390 u_int32_t i, ninfo; in kex_input_ext_info() local
396 if ((r = sshpkt_get_u32(ssh, &ninfo)) != 0) in kex_input_ext_info()
398 for (i = 0; i < ninfo; i++) { in kex_input_ext_info()