/external/libnl/lib/genl/ |
D | family.c | 39 struct genl_family *family = (struct genl_family *) c; in family_constructor() local 41 nl_init_list_head(&family->gf_ops); in family_constructor() 42 nl_init_list_head(&family->gf_mc_grps); in family_constructor() 47 struct genl_family *family = (struct genl_family *) c; in family_free_data() local 51 if (family == NULL) in family_free_data() 54 nl_list_for_each_entry_safe(ops, tmp, &family->gf_ops, o_list) { in family_free_data() 59 nl_list_for_each_entry_safe(grp, t_grp, &family->gf_mc_grps, list) { in family_free_data() 92 struct genl_family *family = (struct genl_family *) obj; in family_dump_line() local 95 family->gf_id, family->gf_name, family->gf_version); in family_dump_line() 113 struct genl_family *family = (struct genl_family *) obj; in family_dump_details() local [all …]
|
D | ctrl.c | 64 static int parse_mcast_grps(struct genl_family *family, struct nlattr *grp_attr) in parse_mcast_grps() argument 94 err = genl_family_add_grp(family, id, name); in parse_mcast_grps() 108 struct genl_family *family; in ctrl_msg_parser() local 112 family = genl_family_alloc(); in ctrl_msg_parser() 113 if (family == NULL) { in ctrl_msg_parser() 128 family->ce_msgtype = info->nlh->nlmsg_type; in ctrl_msg_parser() 129 genl_family_set_id(family, in ctrl_msg_parser() 131 genl_family_set_name(family, in ctrl_msg_parser() 136 genl_family_set_version(family, version); in ctrl_msg_parser() 141 genl_family_set_hdrsize(family, hdrsize); in ctrl_msg_parser() [all …]
|
/external/freetype/src/cache/ |
D | ftcglyph.c | 33 FTC_Family family ) in FTC_GNode_Init() argument 35 gnode->family = family; in FTC_GNode_Init() 37 family->num_nodes++; in FTC_GNode_Init() 45 FTC_Family family = gnode->family; in FTC_GNode_UnselectFamily() local 48 gnode->family = NULL; in FTC_GNode_UnselectFamily() 49 if ( family && --family->num_nodes == 0 ) in FTC_GNode_UnselectFamily() 50 FTC_FAMILY_FREE( family, cache ); in FTC_GNode_UnselectFamily() 78 return FT_BOOL( gnode->family == gquery->family && in ftc_gnode_compare() 106 FTC_Family_Init( FTC_Family family, in FTC_Family_Init() argument 112 family->clazz = clazz->family_class; in FTC_Family_Init() [all …]
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | manpage.css | 5 body { font-family: Arial,Helvetica; } 14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none; 42 .slink2 { font-family: Arial,Helvetica; text-decoration: none; color: #336699; } 45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; [all …]
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/html/ |
D | manpage.css | 5 body { font-family: Arial,Helvetica; } 14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none; 42 .slink2 { font-family: Arial,Helvetica; text-decoration: none; color: #336699; } 45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; [all …]
|
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/ |
D | Os.java | 43 private String family; field in Os 122 public Os(String family) { in Os() argument 123 setFamily(family); in Os() 145 family = f.toLowerCase(Locale.ENGLISH); in setFamily() 184 return isOs(family, name, arch, version); in eval() 194 public static boolean isFamily(String family) { in isFamily() argument 195 return isOs(family, null, null, null); in isFamily() 245 public static boolean isOs(String family, String name, String arch, in isOs() argument 249 if (family != null || name != null || arch != null in isOs() 257 if (family != null) { in isOs() [all …]
|
/external/libcxx/utils/google-benchmark/src/ |
D | benchmark_register.cc | 70 size_t AddBenchmark(std::unique_ptr<Benchmark> family); 90 size_t BenchmarkFamilies::AddBenchmark(std::unique_ptr<Benchmark> family) { in AddBenchmark() argument 93 families_.push_back(std::move(family)); in AddBenchmark() 114 for (std::unique_ptr<Benchmark>& family : families_) { in FindBenchmarks() 116 if (!family) continue; in FindBenchmarks() 118 if (family->ArgsCnt() == -1) { in FindBenchmarks() 119 family->Args({}); in FindBenchmarks() 122 (family->thread_counts_.empty() in FindBenchmarks() 124 : &static_cast<const std::vector<int>&>(family->thread_counts_)); in FindBenchmarks() 125 const size_t family_size = family->args_.size() * thread_counts->size(); in FindBenchmarks() [all …]
|
/external/google-benchmark/src/ |
D | benchmark_register.cc | 70 size_t AddBenchmark(std::unique_ptr<Benchmark> family); 90 size_t BenchmarkFamilies::AddBenchmark(std::unique_ptr<Benchmark> family) { in AddBenchmark() argument 93 families_.push_back(std::move(family)); in AddBenchmark() 114 for (std::unique_ptr<Benchmark>& family : families_) { in FindBenchmarks() 116 if (!family) continue; in FindBenchmarks() 118 if (family->ArgsCnt() == -1) { in FindBenchmarks() 119 family->Args({}); in FindBenchmarks() 122 (family->thread_counts_.empty() in FindBenchmarks() 124 : &static_cast<const std::vector<int>&>(family->thread_counts_)); in FindBenchmarks() 125 const size_t family_size = family->args_.size() * thread_counts->size(); in FindBenchmarks() [all …]
|
/external/libnl/lib/route/link/ |
D | api.c | 192 struct rtnl_link_af_ops *rtnl_link_af_ops_lookup(const unsigned int family) in rtnl_link_af_ops_lookup() argument 194 if (family == AF_UNSPEC || family >= AF_MAX) in rtnl_link_af_ops_lookup() 198 if (af_ops[family]) in rtnl_link_af_ops_lookup() 199 af_ops[family]->ao_refcnt++; in rtnl_link_af_ops_lookup() 202 return af_ops[family]; in rtnl_link_af_ops_lookup() 232 int family; in rtnl_link_af_alloc() local 237 family = ops->ao_family; in rtnl_link_af_alloc() 239 if (!link->l_af_data[family]) { in rtnl_link_af_alloc() 243 link->l_af_data[family] = ops->ao_alloc(link); in rtnl_link_af_alloc() 244 if (!link->l_af_data[family]) in rtnl_link_af_alloc() [all …]
|
/external/tcpdump/ |
D | print-null.c | 55 null_hdr_print(netdissect_options *ndo, u_int family, u_int length) in null_hdr_print() argument 59 tok2str(bsd_af_values,"Unknown",family),family)); in null_hdr_print() 62 tok2str(bsd_af_values,"Unknown AF %u",family))); in null_hdr_print() 79 u_int family; in null_if_print() local 86 memcpy((char *)&family, (char *)p, sizeof(family)); in null_if_print() 96 if ((family & 0xFFFF0000) != 0) in null_if_print() 97 family = SWAPLONG(family); in null_if_print() 100 null_hdr_print(ndo, family, length); in null_if_print() 106 switch (family) { in null_if_print() 133 null_hdr_print(ndo, family, length + NULL_HDRLEN); in null_if_print()
|
D | print-rip.c | 99 register u_short family; in rip_entry_print_v1() local 102 family = EXTRACT_16BITS(&ni->rip_family); in rip_entry_print_v1() 103 if (family != BSD_AFNUM_INET && family != 0) { in rip_entry_print_v1() 104 ND_PRINT((ndo, "\n\t AFI %s, ", tok2str(bsd_af_values, "Unknown (%u)", family))); in rip_entry_print_v1() 115 if (family == 0) { in rip_entry_print_v1() 130 register u_short family; in rip_entry_print_v2() local 132 family = EXTRACT_16BITS(&ni->rip_family); in rip_entry_print_v2() 133 if (family == 0xFFFF) { /* variable-sized authentication structures */ in rip_entry_print_v2() 158 } else if (family != BSD_AFNUM_INET && family != 0) { in rip_entry_print_v2() 159 ND_PRINT((ndo, "\n\t AFI %s", tok2str(bsd_af_values, "Unknown (%u)", family))); in rip_entry_print_v2() [all …]
|
/external/iproute2/lib/ |
D | utils.c | 96 if (!get_addr_1(&addr, arg, AF_INET) && addr.family == AF_INET) { in get_netmask() 422 int get_addr_1(inet_prefix *addr, const char *name, int family) in get_addr_1() argument 429 if ((family == AF_DECnet) || (family == AF_MPLS)) in get_addr_1() 431 addr->family = family; in get_addr_1() 432 addr->bytelen = (family == AF_INET6 ? 16 : 4); in get_addr_1() 437 if (family == AF_PACKET) { in get_addr_1() 443 addr->family = AF_PACKET; in get_addr_1() 450 addr->family = AF_INET6; in get_addr_1() 451 if (family != AF_UNSPEC && family != AF_INET6) in get_addr_1() 461 if (family == AF_DECnet) { in get_addr_1() [all …]
|
/external/iproute2/ip/ |
D | rtmon.c | 77 int family = AF_UNSPEC; in main() local 91 family = AF_INET; in main() 93 family = AF_INET6; in main() 95 family = AF_INET6; in main() 103 family = AF_INET; in main() 105 family = AF_INET6; in main() 107 family = AF_PACKET; in main() 144 if (!family || family == AF_INET) in main() 146 if (!family || family == AF_INET6) in main() 150 if (!family || family == AF_INET) in main() [all …]
|
D | xfrm_monitor.c | 53 __u16 family; in xfrm_acquire_print() local 63 family = xacq->sel.family; in xfrm_acquire_print() 64 if (family == AF_UNSPEC) in xfrm_acquire_print() 65 family = xacq->policy.sel.family; in xfrm_acquire_print() 66 if (family == AF_UNSPEC) in xfrm_acquire_print() 67 family = preferred_family; in xfrm_acquire_print() 81 xfrm_selector_print(&xacq->sel, family, fp, " sel "); in xfrm_acquire_print() 182 __u16 family; in xfrm_report_print() local 190 family = xrep->sel.family; in xfrm_report_print() 191 if (family == AF_UNSPEC) in xfrm_report_print() [all …]
|
D | ipmaddr.c | 35 int family; member 106 m.addr.family = AF_PACKET; in read_dev_mcast() 137 m.addr.family = AF_INET; in read_igmp() 181 m.addr.family = AF_INET6; in read_igmp6() 201 if (list->addr.family == AF_PACKET) { in print_maddr() 208 switch(list->addr.family) { in print_maddr() 216 fprintf(fp, "family %d ", list->addr.family); in print_maddr() 220 format_host(list->addr.family, in print_maddr() 252 if (!filter.family) in multiaddr_list() 253 filter.family = preferred_family; in multiaddr_list() [all …]
|
/external/webrtc/webrtc/base/ |
D | virtualsocket_unittest.cc | 148 EXPECT_EQ(pre_ip.family(), post_ip.family()); in CheckPortIncrementalization() 149 if (post_ip.family() == AF_INET) { in CheckPortIncrementalization() 153 } else if (post_ip.family() == AF_INET6) { in CheckPortIncrementalization() 170 ss_->CreateAsyncSocket(default_route.family(), SOCK_DGRAM); in TestDefaultRoute() 171 socket->Bind(EmptySocketAddressWithFamily(default_route.family())); in TestDefaultRoute() 178 ss_->CreateAsyncSocket(default_route.family(), SOCK_DGRAM); in TestDefaultRoute() 198 AsyncSocket* socket = ss_->CreateAsyncSocket(initial_addr.family(), in BasicTest() 203 EXPECT_EQ(server_addr.family(), initial_addr.family()); in BasicTest() 207 ss_->CreateAsyncSocket(initial_addr.family(), SOCK_DGRAM); in BasicTest() 219 SocketAddress empty = EmptySocketAddressWithFamily(initial_addr.family()); in BasicTest() [all …]
|
D | natsocketfactory.cc | 26 int family = ip.family(); in PackAddressForNAT() local 28 buf[1] = family; in PackAddressForNAT() 31 if (family == AF_INET) { in PackAddressForNAT() 36 } else if (family == AF_INET6) { in PackAddressForNAT() 52 int family = buf[1]; in UnpackAddressFromNAT() local 55 if (family == AF_INET) { in UnpackAddressFromNAT() 59 } else if (family == AF_INET6) { in UnpackAddressFromNAT() 72 explicit NATSocket(NATInternalSocketFactory* sf, int family, int type) in NATSocket() argument 73 : sf_(sf), family_(family), type_(type), connected_(false), in NATSocket() 314 Socket* NATSocketFactory::CreateSocket(int family, int type) { in CreateSocket() argument [all …]
|
/external/pdfium/core/fxge/ge/ |
D | cfx_fontmapper.cpp | 171 const AltFontFamily* family = reinterpret_cast<const AltFontFamily*>(element); in CompareFontFamilyString() local 172 if (str_key.Find(family->m_pFontName) != -1) in CompareFontFamilyString() 175 family->m_pFontName); in CompareFontFamilyString() 183 CFX_ByteString TT_NormalizeName(const FX_CHAR* family) { in TT_NormalizeName() argument 184 CFX_ByteString norm(family); in TT_NormalizeName() 451 CFX_ByteString family; in FindSubstFont() local 457 family = SubstName.Left(find); in FindSubstFont() 458 PDF_GetStandardFontName(&family); in FindSubstFont() 462 family = SubstName; in FindSubstFont() 465 if (family == CFX_ByteStringC(g_Base14FontNames[iBaseFont])) in FindSubstFont() [all …]
|
/external/toybox/toys/pending/ |
D | ping.c | 50 int family, protocol; local 66 family = AF_INET6; 69 family = AF_INET; 79 if (!inet_pton(family, TT.iface, &src_addr)) { 85 if (!ifa->ifa_addr || ifa->ifa_addr->sa_family != family) continue; 87 if (family == AF_INET) 100 error_exit("no v%d addr for -I %s", 4+2*(family==AF_INET6), TT.iface); 102 inet_ntop(family, &src_addr, toybuf, sizeof(toybuf)); 109 TT.sock = xsocket(family, SOCK_RAW, protocol);
|
/external/libnl/lib/netfilter/ |
D | nfnl.c | 108 int flags, uint8_t family, uint16_t res_id) in nfnl_send_simple() argument 111 .nfgen_family = family, in nfnl_send_simple() 174 static int nfnlmsg_append(struct nl_msg *msg, uint8_t family, uint16_t res_id) in nfnlmsg_append() argument 182 nfg->nfgen_family = family; in nfnlmsg_append() 186 msg, family, res_id); in nfnlmsg_append() 201 uint8_t family, uint16_t res_id) in nfnlmsg_alloc_simple() argument 209 if (nfnlmsg_append(msg, family, res_id) < 0) in nfnlmsg_alloc_simple() 231 uint8_t subsys_id, uint8_t type, int flags, uint8_t family, in nfnlmsg_put() argument 240 return nfnlmsg_append(msg, family, res_id); in nfnlmsg_put()
|
/external/iptables/iptables/ |
D | xtables-translate.c | 144 family2str[h->family], p->table, p->chain); in nft_rule_xlate_add() 147 family2str[h->family], p->table, p->chain); in nft_rule_xlate_add() 170 switch (h->family) { in xlate() 224 .family = h->family, in do_command_xlate() 258 family2str[h->family], p.table, p.chain); in do_command_xlate() 261 family2str[h->family], p.table); in do_command_xlate() 273 family2str[h->family], p.table); in do_command_xlate() 282 family2str[h->family], p.table, p.chain); in do_command_xlate() 287 family2str[h->family], p.table, p.chain); in do_command_xlate() 302 if (h->family == AF_INET) { in do_command_xlate() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_pipe.c | 224 rctx->family = rscreen->family; in r600_create_context() 259 rctx->has_vertex_cache = !(rctx->family == CHIP_RV610 || in r600_create_context() 260 rctx->family == CHIP_RV620 || in r600_create_context() 261 rctx->family == CHIP_RS780 || in r600_create_context() 262 rctx->family == CHIP_RS880 || in r600_create_context() 263 rctx->family == CHIP_RV710); in r600_create_context() 275 rctx->has_vertex_cache = !(rctx->family == CHIP_CEDAR || in r600_create_context() 276 rctx->family == CHIP_PALM || in r600_create_context() 277 rctx->family == CHIP_SUMO || in r600_create_context() 278 rctx->family == CHIP_SUMO2 || in r600_create_context() [all …]
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/IN/ |
D | APL.py | 39 def __init__(self, family, negation, address, prefix): argument 40 self.family = family 47 return "!%d:%s/%s" % (self.family, self.address, self.prefix) 49 return "%d:%s/%s" % (self.family, self.address, self.prefix) 52 if self.family == 1: 54 elif self.family == 2: 71 header = struct.pack('!HBB', self.family, self.prefix, l) 103 (family, rest) = item.split(':', 1) 104 family = int(family) 107 item = APLItem(family, negation, address, prefix)
|
/external/c-ares/ |
D | ares__get_hostent.c | 36 int ares__get_hostent(FILE *fp, int family, struct hostent **host) in ares__get_hostent() argument 48 switch (family) { in ares__get_hostent() 139 addr.family = AF_UNSPEC; in ares__get_hostent() 141 if ((family == AF_INET) || (family == AF_UNSPEC)) in ares__get_hostent() 147 addr.family = AF_INET; in ares__get_hostent() 151 if ((family == AF_INET6) || ((family == AF_UNSPEC) && (!addrlen))) in ares__get_hostent() 156 addr.family = AF_INET6; in ares__get_hostent() 190 if (addr.family == AF_INET) in ares__get_hostent() 222 hostent->h_addrtype = addr.family; in ares__get_hostent()
|
D | ares_gethostbyname.c | 75 static int fake_hostent(const char *name, int family, 77 static int file_lookup(const char *name, int family, struct hostent **host); 87 void ares_gethostbyname(ares_channel channel, const char *name, int family, in ares_gethostbyname() argument 94 switch (family) { in ares_gethostbyname() 104 if (fake_hostent(name, family, callback, arg)) in ares_gethostbyname() 116 hquery->want_family = family; in ares_gethostbyname() 240 static int fake_hostent(const char *name, int family, in fake_hostent() argument 250 if (family == AF_INET || family == AF_INET6) in fake_hostent() 274 family = AF_INET; in fake_hostent() 276 if (family == AF_INET6) in fake_hostent() [all …]
|