/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
CollectAPI.java | 37 for (APIInfo info : _apidata.set) { 38 versions.add(info.getStatusVersion()); 70 for (APIInfo info : _apidata.set) { 71 if (!info.getStatusVersion().equals(ver)) { 74 if (state != info.getVal(APIInfo.STA)) { 88 String packageName = info.getPackageName(); 98 String className = info.getClassName(); 106 info.print(pw, false, true, false); 125 info.print(pw, false, true, false); 151 for (APIInfo info : _apidata.set) [all...] |
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/ |
CheckForBrokenJciteTag.java | 53 reporter.info( 56 reporter.info(
|
/external/iproute2/netem/ |
stats.c | 20 struct stat info; local 27 fstat(fileno(fp), &info); local 28 if (info.st_size > 0) { 29 limit = 2*info.st_size/sizeof(double); /* @@ approximate */
|
/external/iproute2/tipc/ |
nametable.c | 31 struct nlattr *info[TIPC_NLA_MAX + 1] = {}; local 36 mnl_attr_parse(nlh, sizeof(*genl), parse_attrs, info); 37 if (!info[TIPC_NLA_NAME_TABLE]) 40 mnl_attr_parse_nested(info[TIPC_NLA_NAME_TABLE], parse_attrs, attrs);
|
socket.c | 29 struct nlattr *info[TIPC_NLA_MAX + 1] = {}; local 32 mnl_attr_parse(nlh, sizeof(*genl), parse_attrs, info); 33 if (!info[TIPC_NLA_PUBL]) 36 mnl_attr_parse_nested(info[TIPC_NLA_PUBL], parse_attrs, attrs); 67 struct nlattr *info[TIPC_NLA_MAX + 1] = {}; local 70 mnl_attr_parse(nlh, sizeof(*genl), parse_attrs, info); 71 if (!info[TIPC_NLA_SOCK]) 74 mnl_attr_parse_nested(info[TIPC_NLA_SOCK], parse_attrs, attrs);
|
/external/iptables/extensions/ |
libip6t_DNPT.c | 64 const struct ip6t_npt_tginfo *info = (const void *)target->data; local 66 if (memcmp(&info->src_pfx.in6, &zero_addr, sizeof(zero_addr)) != 0 || 67 info->src_pfx_len != 0) 69 xtables_ip6addr_to_numeric(&info->src_pfx.in6), 70 info->src_pfx_len); 71 if (memcmp(&info->dst_pfx.in6, &zero_addr, sizeof(zero_addr)) != 0 || 72 info->dst_pfx_len != 0) 74 xtables_ip6addr_to_numeric(&info->dst_pfx.in6), 75 info->dst_pfx_len);
|
libip6t_SNPT.c | 64 const struct ip6t_npt_tginfo *info = (const void *)target->data; local 66 if (memcmp(&info->src_pfx.in6, &zero_addr, sizeof(zero_addr)) != 0 || 67 info->src_pfx_len != 0) 69 xtables_ip6addr_to_numeric(&info->src_pfx.in6), 70 info->src_pfx_len); 71 if (memcmp(&info->dst_pfx.in6, &zero_addr, sizeof(zero_addr)) != 0 || 72 info->dst_pfx_len != 0) 74 xtables_ip6addr_to_numeric(&info->dst_pfx.in6), 75 info->dst_pfx_len);
|
libxt_CONNSECMARK.c | 38 struct xt_connsecmark_target_info *info = cb->data; local 43 info->mode = CONNSECMARK_SAVE; 46 info->mode = CONNSECMARK_RESTORE; 57 static void print_connsecmark(const struct xt_connsecmark_target_info *info) 59 switch (info->mode) { 69 xtables_error(OTHER_PROBLEM, PFX "invalid mode %hhu\n", info->mode); 77 const struct xt_connsecmark_target_info *info = local 81 print_connsecmark(info); 87 const struct xt_connsecmark_target_info *info = local 91 print_connsecmark(info); [all...] |
libxt_IDLETIMER.c | 60 struct idletimer_tg_info *info = local 63 printf(" timeout:%u", info->timeout); 64 printf(" label:%s", info->label); 65 printf(" send_nl_msg:%u", info->send_nl_msg); 71 struct idletimer_tg_info *info = local 74 printf(" --timeout %u", info->timeout); 75 printf(" --label %s", info->label); 76 printf(" --send_nl_msg %u", info->send_nl_msg);
|
libxt_NFLOG.c | 43 struct xt_nflog_info *info = (struct xt_nflog_info *)t->data; local 45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD; 60 static void nflog_print(const struct xt_nflog_info *info, char *prefix) 62 if (info->prefix[0] != '\0') { 64 xtables_save_string(info->prefix); 66 if (info->group) 67 printf(" %snflog-group %u", prefix, info->group); 68 if (info->len) 69 printf(" %snflog-range %u", prefix, info->len); 70 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD 77 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local 84 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local [all...] |
libxt_SECMARK.c | 34 struct xt_secmark_target_info *info = cb->data; local 37 info->mode = SECMARK_MODE_SEL; 40 static void print_secmark(const struct xt_secmark_target_info *info) 42 switch (info->mode) { 44 printf("selctx %s", info->secctx); 48 xtables_error(OTHER_PROBLEM, PFX "invalid mode %hhu\n", info->mode); 55 const struct xt_secmark_target_info *info = local 59 print_secmark(info); 64 const struct xt_secmark_target_info *info = local 68 print_secmark(info); [all...] |
libxt_TEE.c | 54 const struct xt_tee_tginfo *info = (const void *)target->data; local 57 printf(" TEE gw:%s", xtables_ipaddr_to_numeric(&info->gw.in)); 59 printf(" TEE gw:%s", xtables_ipaddr_to_anyname(&info->gw.in)); 60 if (*info->oif != '\0') 61 printf(" oif=%s", info->oif); 67 const struct xt_tee_tginfo *info = (const void *)target->data; local 70 printf(" TEE gw:%s", xtables_ip6addr_to_numeric(&info->gw.in6)); 72 printf(" TEE gw:%s", xtables_ip6addr_to_anyname(&info->gw.in6)); 73 if (*info->oif != '\0') 74 printf(" oif=%s", info->oif) 79 const struct xt_tee_tginfo *info = (const void *)target->data; local 88 const struct xt_tee_tginfo *info = (const void *)target->data; local [all...] |
libxt_connlabel.c | 34 struct xt_connlabel_mtinfo *info = cb->data; local 44 info->bit = tmp; 46 info->options |= XT_CONNLABEL_OP_INVERT; 49 info->options |= XT_CONNLABEL_OP_SET; 64 connlabel_mt_print_op(const struct xt_connlabel_mtinfo *info, const char *prefix) 66 if (info->options & XT_CONNLABEL_OP_SET) 73 const struct xt_connlabel_mtinfo *info = (const void *)match->data; local 74 const char *name = connlabel_get_name(info->bit); 77 if (info->options & XT_CONNLABEL_OP_INVERT) 80 printf(" %u", info->bit) 90 const struct xt_connlabel_mtinfo *info = (const void *)match->data; local [all...] |
libxt_mac.c | 52 const struct xt_mac_info *info = (void *)match->data; local 55 if (info->invert) 58 print_mac(info->srcaddr); 63 const struct xt_mac_info *info = (void *)match->data; local 65 if (info->invert) 69 print_mac(info->srcaddr);
|
libxt_nfacct.c | 50 nfacct_print_name(const struct xt_nfacct_match_info *info, char *name) 53 xtables_save_string(info->name); 59 const struct xt_nfacct_match_info *info = local 62 nfacct_print_name(info, ""); 67 const struct xt_nfacct_match_info *info = local 70 nfacct_print_name(info, "--");
|
libxt_osf.c | 66 struct xt_osf_info *info = cb->data; local 72 info->flags |= XT_OSF_INVERT; 73 info->len = strlen(info->genre); 76 info->flags |= XT_OSF_TTL; 79 info->flags |= XT_OSF_LOG; 86 const struct xt_osf_info *info = (const struct xt_osf_info*) match->data; local 88 printf(" OS fingerprint match %s%s", (info->flags & XT_OSF_INVERT) ? "! " : "", info->genre); 93 const struct xt_osf_info *info = (const struct xt_osf_info*) match->data local [all...] |
libxt_physdev.c | 42 struct xt_physdev_info *info = cb->data; local 47 xtables_parse_interface(cb->arg, info->physindev, 48 (unsigned char *)info->in_mask); 50 info->invert |= XT_PHYSDEV_OP_IN; 51 info->bitmask |= XT_PHYSDEV_OP_IN; 54 xtables_parse_interface(cb->arg, info->physoutdev, 55 (unsigned char *)info->out_mask); 57 info->invert |= XT_PHYSDEV_OP_OUT; 58 info->bitmask |= XT_PHYSDEV_OP_OUT; 61 info->bitmask |= XT_PHYSDEV_OP_ISIN 87 const struct xt_physdev_info *info = (const void *)match->data; local 110 const struct xt_physdev_info *info = (const void *)match->data; local [all...] |
libxt_rpfilter.c | 56 const struct xt_rpfilter_info *info = matchinfo; local 57 if (info->flags & XT_RPFILTER_LOOSE) 59 if (info->flags & XT_RPFILTER_VALID_MARK) 61 if (info->flags & XT_RPFILTER_ACCEPT_LOCAL) 63 if (info->flags & XT_RPFILTER_INVERT)
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/data/ |
SessionInfoTest.java | 30 final SessionInfo info = new SessionInfo("id", 1000, 2000); local 31 assertEquals("id", info.getId()); 32 assertEquals(1000, info.getStartTimeStamp()); 33 assertEquals(2000, info.getDumpTimeStamp());
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
Logger.java | 52 * Formats and logs at info level. 56 public void info(String msg, Object... args); method in interface:Logger 59 * Logs the given Throwable information at info level 62 public void info(Throwable thrown); method in interface:Logger 65 * Logs the given message at info level, with Throwable information. 69 public void info(String msg, Throwable thrown); method in interface:Logger
|
/external/libbrillo/brillo/ |
asynchronous_signal_handler.cc | 75 struct signalfd_siginfo info; local 77 reinterpret_cast<char*>(&info), sizeof(info))) { 78 int signal = info.ssi_signo; 87 bool must_unregister = callback.Run(info);
|
process_reaper.cc | 57 siginfo_t info; local 58 info.si_pid = 0; 59 int rc = HANDLE_EINTR(waitid(P_ALL, 0, &info, WNOHANG | WEXITED)); 68 if (info.si_pid == 0) { 72 auto proc = watched_processes_.find(info.si_pid); 74 LOG(INFO) << "Untracked process " << info.si_pid 75 << " terminated with status " << info.si_status 76 << " (code = " << info.si_code << ")"; 79 << "Process " << info.si_pid << " terminated with status [all...] |
/external/libchrome/base/debug/ |
debugger_posix.cc | 77 // Initialize mib, which tells sysctl what info we want. In this case, 92 struct kinfo_proc info; local 93 size_t info_size = sizeof(info); 102 int sysctl_result = sysctl(mib, arraysize(mib), &info, &info_size, NULL, 0); 113 being_debugged = (info.ki_flag & P_TRACED) != 0; 115 being_debugged = (info.p_flag & P_TRACED) != 0; 117 being_debugged = (info.kp_proc.p_flag & P_TRACED) != 0;
|
/external/libchrome/base/ |
sys_info_posix.cc | 104 struct utsname info; local 105 if (uname(&info) < 0) { 109 return std::string(info.sysname); 116 struct utsname info; local 117 if (uname(&info) < 0) { 121 return std::string(info.release); 127 struct utsname info; local 128 if (uname(&info) < 0) { 132 std::string arch(info.machine);
|
/external/libchrome/dbus/ |
file_descriptor.cc | 56 base::File::Info info; local 57 bool ok = file.GetInfo(&info); 59 valid_ = (ok && !info.is_directory);
|