Home
last modified time | relevance | path

Searched refs:nh (Results 1 – 25 of 103) sorted by relevance

12345

/external/libnl/lib/route/
Dnexthop.c39 struct rtnl_nexthop *nh; in rtnl_route_nh_alloc() local
41 nh = calloc(1, sizeof(*nh)); in rtnl_route_nh_alloc()
42 if (!nh) in rtnl_route_nh_alloc()
45 nl_init_list_head(&nh->rtnh_list); in rtnl_route_nh_alloc()
47 return nh; in rtnl_route_nh_alloc()
52 struct rtnl_nexthop *nh; in rtnl_route_nh_clone() local
54 nh = rtnl_route_nh_alloc(); in rtnl_route_nh_clone()
55 if (!nh) in rtnl_route_nh_clone()
58 nh->rtnh_flags = src->rtnh_flags; in rtnl_route_nh_clone()
59 nh->rtnh_flag_mask = src->rtnh_flag_mask; in rtnl_route_nh_clone()
[all …]
Droute_obj.c80 struct rtnl_nexthop *nh, *tmp; in route_free_data() local
89 nl_list_for_each_entry_safe(nh, tmp, &r->rt_nexthops, rtnh_list) { in route_free_data()
90 rtnl_route_remove_nexthop(r, nh); in route_free_data()
91 rtnl_route_nh_free(nh); in route_free_data()
99 struct rtnl_nexthop *nh, *new; in route_clone() local
114 nl_list_for_each_entry(nh, &src->rt_nexthops, rtnh_list) { in route_clone()
115 new = rtnl_route_nh_clone(nh); in route_clone()
160 struct rtnl_nexthop *nh; in route_dump_line() local
162 nl_list_for_each_entry(nh, &r->rt_nexthops, rtnh_list) { in route_dump_line()
164 rtnl_route_nh_dump(nh, p); in route_dump_line()
[all …]
/external/tcpdump/
Dprint-cnfp.c159 register const struct nfhdr_v1 *nh; in cnfp_v1_print() local
167 nh = (const struct nfhdr_v1 *)cp; in cnfp_v1_print()
168 ND_TCHECK(*nh); in cnfp_v1_print()
170 ver = EXTRACT_16BITS(&nh->version); in cnfp_v1_print()
171 nrecs = EXTRACT_32BITS(&nh->count); in cnfp_v1_print()
178 t = EXTRACT_32BITS(&nh->utc_sec); in cnfp_v1_print()
182 EXTRACT_32BITS(&nh->msys_uptime)/1000, in cnfp_v1_print()
183 EXTRACT_32BITS(&nh->msys_uptime)%1000, in cnfp_v1_print()
184 EXTRACT_32BITS(&nh->utc_sec), EXTRACT_32BITS(&nh->utc_nsec))); in cnfp_v1_print()
186 nr = (const struct nfrec_v1 *)&nh[1]; in cnfp_v1_print()
[all …]
Dprint-ip6.c83 int nh; in ip6_print() local
142 nh = ip6->ip6_nxt; in ip6_print()
148 nh != IPPROTO_TCP && nh != IPPROTO_UDP && in ip6_print()
149 nh != IPPROTO_DCCP && nh != IPPROTO_SCTP) { in ip6_print()
154 switch (nh) { in ip6_print()
157 nh = *cp; in ip6_print()
161 nh = *cp; in ip6_print()
167 nh = *cp; in ip6_print()
184 nh = *cp; in ip6_print()
188 nh = *cp; in ip6_print()
[all …]
Dprint-ip.c318 u_char nh; member
330 switch (ipds->nh) { in ip_print_demux()
333 ipds->nh = *ipds->cp; in ip_print_demux()
351 ipds->nh = enh & 0xff; in ip_print_demux()
363 ipds->nh = enh & 0xff; in ip_print_demux()
485 if (ndo->ndo_nflag==0 && (proto = getprotobynumber(ipds->nh)) != NULL) in ip_print_demux()
488 ND_PRINT((ndo, " ip-proto-%d", ipds->nh)); in ip_print_demux()
497 u_int length, u_int nh, in ip_print_inner() argument
506 ipd.nh = nh; in ip_print_inner()
642 ipds->nh = ipds->ip->ip_p; in ip_print()
[all …]
/external/libexif/po/
Dvi.po30 msgstr "Định dạng không hợp lệ \"%s\", mong chờ \"%s\"."
37 msgstr "Số thành phần không hợp lệ (%i, mong chờ %i)."
44 msgstr "Số thành phần không hợp lệ (%i, mong chờ %i hay %i)."
54 msgstr "Vĩ lệnh"
79 msgstr "Chính xác"
162 msgstr "Đèn nháy ngoài"
270 msgstr "Màn hình rộng"
351 msgstr "Đèn nháy bị tắt"
360 msgstr "Siêu vĩ lệnh"
368 msgstr "Trong nhà"
[all …]
/external/tlsdate/src/
Drouteup.c78 struct nlmsghdr *nh; in routeup_process() local
82 for (nh = (struct nlmsghdr *) buf; NLMSG_OK (nh, sz); in routeup_process()
83 nh = NLMSG_NEXT (nh, sz)) in routeup_process()
91 if (nh->nlmsg_type == NLMSG_DONE) in routeup_process()
93 if (nh->nlmsg_type != RTM_NEWROUTE) in routeup_process()
/external/libpcap/
Dpcap-nit.c108 register struct nit_hdr *nh; in pcap_read_nit() local
153 nh = (struct nit_hdr *)bp; in pcap_read_nit()
154 cp = bp + sizeof(*nh); in pcap_read_nit()
156 switch (nh->nh_state) { in pcap_read_nit()
164 pn->stat.ps_drop = nh->nh_dropped; in pcap_read_nit()
172 "bad nit state %d", nh->nh_state); in pcap_read_nit()
176 bp += ((sizeof(struct nit_hdr) + nh->nh_datalen + in pcap_read_nit()
179 caplen = nh->nh_wirelen; in pcap_read_nit()
182 if (bpf_filter(p->fcode.bf_insns, cp, nh->nh_wirelen, caplen)) { in pcap_read_nit()
184 h.ts = nh->nh_timestamp; in pcap_read_nit()
[all …]
/external/iproute2/ip/
Dipmroute.c149 struct rtnexthop *nh = RTA_DATA(tb[RTA_MULTIPATH]); in print_mroute() local
155 if (len < sizeof(*nh)) in print_mroute()
157 if (nh->rtnh_len > len) in print_mroute()
164 fprintf(fp, "%s", ll_index_to_name(nh->rtnh_ifindex)); in print_mroute()
165 if (nh->rtnh_hops > 1) in print_mroute()
166 fprintf(fp, "(ttl %d) ", nh->rtnh_hops); in print_mroute()
169 len -= NLMSG_ALIGN(nh->rtnh_len); in print_mroute()
170 nh = RTNH_NEXT(nh); in print_mroute()
Diproute.c628 struct rtnexthop *nh = RTA_DATA(tb[RTA_MULTIPATH]); in print_route() local
634 if (len < sizeof(*nh)) in print_route()
636 if (nh->rtnh_len > len) in print_route()
645 if (nh->rtnh_len > sizeof(*nh)) { in print_route()
646 parse_rtattr(tb, RTA_MAX, RTNH_DATA(nh), nh->rtnh_len - sizeof(*nh)); in print_route()
682 fprintf(fp, " %s", ll_index_to_name(nh->rtnh_ifindex)); in print_route()
683 if (nh->rtnh_hops != 1) in print_route()
684 fprintf(fp, "(ttl>%d)", nh->rtnh_hops); in print_route()
686 fprintf(fp, " dev %s", ll_index_to_name(nh->rtnh_ifindex)); in print_route()
687 fprintf(fp, " weight %d", nh->rtnh_hops+1); in print_route()
[all …]
/external/e2fsprogs/po/
Dvi.po116 msgstr "trong khi cập nhật nút thông tin khối hỏng"
121 msgstr "Cảnh báo: tìm thấy khối cấm %u trong nút thông tin khối hỏng nên bị xoá.\n"
157 msgstr "ánh xạ thư mục rỗng"
223 msgstr "đang đọc siêu khối nhật ký\n"
228 msgstr "%s: không tìm thấy siêu khối nhật ký hợp lệ\n"
233 msgstr "%s: nhật ký quá ngắn\n"
238 msgstr "%s: đang phục hồi nhật ký\n"
243 msgstr "%s: sẽ không phục hồi nhật ký trong khi có tình trạng chỉ đọc\n"
252 msgstr "athuộc tính đã mở rộng"
264 msgstr "Bmảng ảnh"
[all …]
/external/bison/po/
Dvi.po27 msgstr "cảnh báo"
74 msgstr "Tình trạng %d "
121 msgstr "Hãy chạy câu lệnh “%s --help” (trợ giúp) để xem thêm thông tin.\n"
135 "Tạo ra một bộ phân tích tất định LR hay RL được khái quát hoá dùng\n"
174 " -W, --warnings[=LOẠI] thông báo các cảnh báo thuộc về phân LOẠI này\n"
194 " -L, --language=NGÔN_NGỮ chỉ định ngôn ngữ lập trình kết xuất\n"
195 " (đây là một tính năng vẫn còn thực "
197 " -S, --skeleton=TẬP_TIN chỉ định khung sườn cần dùng\n"
200 " -D, --define=NAME[=VALUE] tương tự như `%define NAME “VALUE”'\n"
224 " -d cũng vậy nhưng không thể đặt TẬP_TIN (cho POSIX "
[all …]
/external/iputils/ninfod/
Dni_ifaddrs.c165 struct nlmsghdr *nh; in nl_getmsg() local
187 nh = (struct nlmsghdr *) buff; in nl_getmsg()
188 …for (nh = (struct nlmsghdr *) buff; NLMSG_OK(nh, read_size); nh = (struct nlmsghdr *) NLMSG_NEXT(n… in nl_getmsg()
189 if (nh->nlmsg_pid != pid || nh->nlmsg_seq != seq) in nl_getmsg()
191 if (nh->nlmsg_type == NLMSG_DONE) { in nl_getmsg()
195 if (nh->nlmsg_type == NLMSG_ERROR) { in nl_getmsg()
196 struct nlmsgerr *nlerr = (struct nlmsgerr *) NLMSG_DATA(nh); in nl_getmsg()
198 if (nh->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) in nl_getmsg()
/external/icu/icu4c/source/extra/uconv/samples/utf8/
Dbanviet.txt5 không bao giờ quan-tâm. Một ngưòi như Bần thì ai cũng
6 tưởng là không còn có gì là quí-vât nữa. Thế nhưng ta
7 nhầm vì Bần có cái quạt mo, Bần quí lắm. Bần quí và giữ
9 giời mưa Bần cũng nhờ nó mà đỡ ướt. Muốn ngồi Bần
11 dùng để dánh đuổi các chú ấy.
/external/libnl/src/lib/
Droute.c151 struct rtnl_nexthop *nh; in nl_cli_route_parse_nexthop() local
157 if (!(nh = rtnl_route_nh_alloc())) in nl_cli_route_parse_nexthop()
174 rtnl_route_nh_set_ifindex(nh, ival); in nl_cli_route_parse_nexthop()
179 rtnl_route_nh_set_gateway(nh, addr); in nl_cli_route_parse_nexthop()
189 rtnl_route_nh_set_weight(nh, lval); in nl_cli_route_parse_nexthop()
194 rtnl_route_add_nexthop(route, nh); in nl_cli_route_parse_nexthop()
/external/libedit/src/
Dhistory.c686 history_set_fun(TYPE(History) *h, TYPE(History) *nh) in history_set_fun() argument
690 if (nh->h_first == NULL || nh->h_next == NULL || nh->h_last == NULL || in history_set_fun()
691 nh->h_prev == NULL || nh->h_curr == NULL || nh->h_set == NULL || in history_set_fun()
692 nh->h_enter == NULL || nh->h_add == NULL || nh->h_clear == NULL || in history_set_fun()
693 nh->h_del == NULL || nh->h_ref == NULL) { in history_set_fun()
714 h->h_first = nh->h_first; in history_set_fun()
715 h->h_next = nh->h_next; in history_set_fun()
716 h->h_last = nh->h_last; in history_set_fun()
717 h->h_prev = nh->h_prev; in history_set_fun()
718 h->h_curr = nh->h_curr; in history_set_fun()
[all …]
/external/libcxxabi/src/
Dcxa_new_delete.cpp46 std::new_handler nh = std::get_new_handler(); in operator new() local
47 if (nh) in operator new()
48 nh(); in operator new()
/external/libcxx/src/
Dnew.cpp58 std::new_handler nh = std::get_new_handler(); in operator new() local
59 if (nh) in operator new()
60 nh(); in operator new()
/external/elfutils/libdwfl/
Ddwfl_segment_report_module.c479 const GElf_Nhdr *nh = notes; in dwfl_segment_report_module() local
480 while ((const void *) nh < (const void *) notes + filesz) in dwfl_segment_report_module()
482 const void *note_name = nh + 1; in dwfl_segment_report_module()
483 const void *note_desc = note_name + NOTE_ALIGN (nh->n_namesz); in dwfl_segment_report_module()
485 - note_desc) < nh->n_descsz)) in dwfl_segment_report_module()
488 if (nh->n_type == NT_GNU_BUILD_ID in dwfl_segment_report_module()
489 && nh->n_descsz > 0 in dwfl_segment_report_module()
490 && nh->n_namesz == sizeof "GNU" in dwfl_segment_report_module()
494 build_id_len = nh->n_descsz; in dwfl_segment_report_module()
495 build_id = malloc (nh->n_descsz); in dwfl_segment_report_module()
[all …]
/external/icu/icu4c/source/data/lang/
Dvi.txt29 x{"Sử dụng cá nhân"}
540 und{"Ngôn ngữ không xác định"}
603 Cans{"Âm tiết Thổ dân Canada Hợp nhất"}
615 Egyd{"Chữ Ai Cập bình dân"}
617 Egyp{"Chữ tượng hình Ai Cập"}
634 Hluw{"Chữ tượng hình Anatolia"}
667 Maya{"Chữ tượng hình Maya"}
691 Phlp{"Chữ Pahlavi Thánh ca"}
736 Xsux{"Chữ hình nêm Sumero-Akkadian"}
743 Zzzz{"Chữ viết không xác định"}
[all …]
/external/opencv3/modules/videostab/src/
Dinpainting.cpp176 int nh = (n-1)/2; in inpaint() local
177 int c1 = pixels[nh].color.x; in inpaint()
178 int c2 = pixels[nh].color.y; in inpaint()
179 int c3 = pixels[nh].color.z; in inpaint()
180 if (n-2*nh) in inpaint()
182 c1 = (c1 + pixels[nh].color.x) / 2; in inpaint()
183 c2 = (c2 + pixels[nh].color.y) / 2; in inpaint()
184 c3 = (c3 + pixels[nh].color.z) / 2; in inpaint()
/external/svox/pico/lib/
Dpicofftsg.c670 picoos_int32 j0, k0, j1, k1, l, m, i, j, k, nh, m2; in bitrv2() local
678 nh = n >> 1; in bitrv2()
722 j1 += nh; in bitrv2()
763 k1 += nh; in bitrv2()
802 j1 -= nh; in bitrv2()
842 for (i = nh >> 1; i > (k ^= i); i >>= 1) { in bitrv2()
848 k1 += nh; in bitrv2()
878 k1 -= nh; in bitrv2()
887 j1 += nh + 2; in bitrv2()
888 k1 += nh + 2; in bitrv2()
[all …]
/external/blktrace/btt/
Dq2d.c96 double nh = (double)q2dp->nhistos; in q2d_display() local
99 double p = 100.0 * (double)q2dp->histos[i] / nh; in q2d_display()
/external/icu/icu4c/source/data/rbnf/
Dvi.txt59 "1: th\u1EE9 nh\u1EA5t;",
60 "2: th\u1EE9 nh\u00EC;",
/external/icu/icu4c/source/data/region/
Dvi.txt43 AE{"Các Tiểu V.quốc Ả Rập T.nhất"}
265 TF{"Lãnh thổ miền nam nước Pháp"}
281 UM{"Các đảo nhỏ xa t.tâm thuộc Mỹ"}
285 VA{"Thành Vatican"}
300 ZZ{"Vùng không xác định"}

12345