Searched refs:family (Results 1 - 25 of 157) sorted by relevance

1234567

/haiku/src/servers/app/font/
H A DFontManager.cpp108 /*! \brief Counts the number of styles available in a font family
109 \param family Name of the font family to scan
110 \return The number of font styles currently available for the font family
115 FontFamily *family = GetFamily(familyName); local
116 if (family != NULL)
117 return family->CountStyles();
123 /*! \brief Counts the number of styles available in a font family
124 \param family Name of the font family t
130 FontFamily *family = GetFamily(familyID); local
176 FontFamily* family = GetFamily(familyName); local
187 FontFamily* family = GetFamily(familyID); local
228 FontFamily* family; local
262 FontFamily* family = fFamilies.ItemAt(i); local
281 FontFamily* family = style->Family(); local
303 FontFamily* family = _FindFamily(face->family_name); local
[all...]
H A DFontManager.h41 virtual int32 CountStyles(const char* family);
48 FontStyle* GetStyleByIndex(const char* family,
69 FontFamily* _FindFamily(const char* family) const;
81 FontKey(uint16 family, uint16 style) argument
82 : familyID(family), styleID(style) {}
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DCodecTable.h12 media_format_family family; member in struct:AVInputFamily
/haiku/headers/os/net/
H A DNetworkAddressResolver.h34 BNetworkAddressResolver(int family,
37 BNetworkAddressResolver(int family,
50 status_t SetTo(int family, const char* address,
52 status_t SetTo(int family, const char* address,
57 status_t GetNextAddress(int family, uint32* cookie,
69 static BReference<const BNetworkAddressResolver> Resolve(int family,
72 static BReference<const BNetworkAddressResolver> Resolve(int family,
82 CacheEntry(int family, const char* address, const char* service, argument
85 fFamily(family),
93 bool Matches(int family, BStrin argument
[all...]
H A DNetworkRoute.h49 static status_t GetDefaultRoute(int family,
52 static status_t GetDefaultGateway(int family,
56 static status_t GetRoutes(int family,
58 static status_t GetRoutes(int family, const char* interfaceName,
60 static status_t GetRoutes(int family, const char* interfaceName,
H A DNetworkInterface.h90 int32 FindFirstAddress(int family);
107 status_t RemoveRoute(int family,
109 status_t RemoveDefaultRoute(int family);
110 status_t GetRoutes(int family,
112 status_t GetDefaultRoute(int family,
114 status_t GetDefaultGateway(int family,
117 status_t AutoConfigure(int family);
H A DNetworkAddress.h26 BNetworkAddress(int family, const char* address,
28 BNetworkAddress(int family, const char* address,
51 status_t SetTo(int family, const char* address,
53 status_t SetTo(int family, const char* address,
65 status_t SetToBroadcast(int family, uint16 port = 0);
66 status_t SetToLocal(int family = AF_UNSPEC,
68 status_t SetToLoopback(int family = AF_UNSPEC,
70 status_t SetToMask(int family, uint32 prefixLength);
71 status_t SetToWildcard(int family, uint16 port = 0);
/haiku/src/system/kernel/arch/x86/64/
H A Derrata.cpp14 needs_zenbleed_patch(const uint32 family, const uint32 model, const uint64 microcode) argument
16 if (family != 0x17)
43 const uint32 family = cpu->arch.family + cpu->arch.extended_family, local
56 switch (family) {
71 if (family == 0x16 && model <= 0xf) {
77 if (family == 0x17 && model == 0x1) {
120 if (needs_zenbleed_patch(family, model, microcode)) {
/haiku/src/preferences/appearance/
H A DFontSelectionView.cpp53 extern void _set_system_font_(const char *which, font_family family,
56 font_family family, font_style style, float* _size);
62 _set_system_font_(const char *which, font_family family, argument
72 _get_system_default_font_(const char* which, font_family family, argument
196 const char* family; local
197 if (msg->FindString("family", &family) != B_OK)
203 BMenuItem* familyItem = fFontsMenu->FindItem(family);
213 fCurrentFont.SetFamilyAndStyle(family, item->Label());
222 const char* family; local
277 font_family family; local
317 font_family family; local
332 _set_system_font_(Name(), family, style, fCurrentFont.Size()); local
339 font_family family; local
439 font_family family; local
[all...]
/haiku/src/tests/kits/media/
H A DFormatDescriptions.cpp29 a.family = B_AVI_FORMAT_FAMILY;
35 b.family = a.family;
38 a.family = B_QUICKTIME_FORMAT_FAMILY;
42 b.family = B_QUICKTIME_FORMAT_FAMILY;
57 a.family = B_MISC_FORMAT_FAMILY;
61 b.family = B_MISC_FORMAT_FAMILY;
/haiku/src/add-ons/kernel/network/stack/
H A Ddomains.cpp45 /*! Scans the domain list for the specified family.
49 lookup_domain(int family) argument
55 if (domain->family == family)
71 kprintf("domain: %p, %s, %d\n", domain, domain->name, domain->family);
108 /*! Gets the domain of the specified family.
111 get_domain(int family) argument
114 return lookup_domain(family);
119 register_domain(int family, const char* name, argument
124 TRACE(("register_domain(%d, %s)\n", family, nam
[all...]
H A Ddomains.h31 net_domain* get_domain(int family);
32 status_t register_domain(int family, const char* name,
H A Dstack.cpp48 int family; member in struct:chain_key
53 struct family { struct
54 family(int type);
61 static struct family* Lookup(int type);
62 static struct family* Add(int type);
64 struct family* next;
73 chain(int family, int type, int protocol);
81 int family, int type, int protocol);
83 int family, int type, int protocol, va_list modules);
85 int family, in
91 int family; member in struct:chain
176 family::family(int _type) function in class:family
217 struct family* family = new (std::nothrow) ::family(type); local
334 Lookup(ChainTable* chains, int family, int type, int protocol) argument
342 Add(ChainTable* chains, int family, int type, int protocol, va_list modules) argument
384 Add(ChainTable* chains, int family, int type, int protocol, ...) argument
656 register_domain_protocols(int family, int type, int protocol, ...) argument
684 register_domain_datalink_protocols(int family, int type, ...) argument
718 register_domain_receiving_protocol(int family, int type, const char* moduleName) argument
[all...]
/haiku/src/tests/kits/interface/bfont/
H A DDumpFontList.cpp21 font_family family; local
24 if (get_font_family(i, &family, &familyFlags) == B_OK) {
25 printf("family \"%s\" (0x%08lx)\n", family, familyFlags);
27 int32 styleCount = count_font_styles(family);
32 if (get_font_style(family, j, &style, &styleFlags) == B_OK) {
36 font.SetFamilyAndStyle(family, style);
96 printf("getting family %ld failed\n", i);
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DPackageFSRoot.cpp254 if (ResolvableFamily* family
256 family->AddResolvable(resolvable, dependenciesToUpdate);
258 family = new(std::nothrow) ResolvableFamily;
259 if (family == NULL)
262 family->AddResolvable(resolvable, dependenciesToUpdate);
263 fResolvables.Insert(family);
280 if (DependencyFamily* family
282 family->AddDependency(dependency);
284 family = new(std::nothrow) DependencyFamily;
285 if (family
[all...]
/haiku/src/add-ons/kernel/cpu/x86/
H A Damd.cpp31 if (gCPU[0].arch.family < 5
32 || (gCPU[0].arch.family == 5 && gCPU[0].arch.model < 9))
/haiku/src/bin/
H A Dlistfont.cpp33 printf("\t-s --styles list styles for each family\n");
100 font_family family; local
101 if (get_font_family(f, &family) < B_OK)
104 printf("%s\n", family);
108 int32 styleCount = count_font_styles(family);
114 if (get_font_style(family, s, &style, &face, &flags) < B_OK)
118 printf("%s/%s\n", family, style);
123 fontName << family << "/" << style;
127 font.SetFamilyAndStyle(family, style);
/haiku/src/apps/webpositive/support/
H A DFontSelectionView.cpp146 const char* family; local
147 if (message->FindString("family", &family) != B_OK)
153 BMenuItem* familyItem = fFontsMenu->FindItem(family);
168 fCurrentFont.SetFamilyAndStyle(family, styleItem->Label());
181 const char* family; local
183 if (message->FindString("family", &family) != B_OK
187 BMenuItem *familyItem = fFontsMenu->FindItem(family);
194 fCurrentFont.SetFamilyAndStyle(family, styl
323 font_family family; local
446 font_family family; local
516 font_family family; local
[all...]
/haiku/headers/private/net/
H A Dnet_stat.h19 int family; member in struct:net_stat
/haiku/src/preferences/network/
H A DIPAddressControl.h17 IPAddressControl(int family, const char* label,
H A DIPAddressControl.cpp18 IPAddressControl::IPAddressControl(int family, const char* label, argument
22 fFamily(family),
/haiku/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp72 BNetworkAddressResolver::BNetworkAddressResolver(int family, argument
79 SetTo(family, address, port, flags);
83 BNetworkAddressResolver::BNetworkAddressResolver(int family, argument
90 SetTo(family, address, service, flags);
134 BNetworkAddressResolver::SetTo(int family, const char* address, uint16 port, argument
140 return SetTo(family, address, port != 0 ? service.String() : NULL, flags);
145 BNetworkAddressResolver::SetTo(int family, const char* host, argument
161 hint.ai_family = family;
243 BNetworkAddressResolver::GetNextAddress(int family, uint32* cookie, argument
249 // Skip previous info entries, and those that have a non-matching family
287 Resolve(int family, const char* address, uint16 port, uint32 flags) argument
298 Resolve(int family, const char* address, const char* service, uint32 flags) argument
[all...]
H A DNetworkInterface.cpp36 int family = AF_INET; local
38 family = family_from_interface_address(address);
40 FileDescriptorCloser socket(::socket(family, SOCK_DGRAM, 0));
80 do_request(int family, T& request, const char* name, int option) argument
82 FileDescriptorCloser socket(::socket(family, SOCK_DGRAM, 0));
388 BNetworkInterface::FindFirstAddress(int family) argument
390 FileDescriptorCloser socket(::socket(family, SOCK_DGRAM, 0));
489 int family = route.AddressFamily(); local
490 if (family == AF_UNSPEC)
495 return do_request(family, reques
515 int family = route.AddressFamily(); local
524 RemoveRoute(int family, const BNetworkRoute& route) argument
533 RemoveDefaultRoute(int family) argument
542 GetRoutes(int family, BObjectList<BNetworkRoute>& routes) const argument
550 GetDefaultRoute(int family, BNetworkRoute& route) const argument
557 GetDefaultGateway(int family, BNetworkAddress& gateway) const argument
564 AutoConfigure(int family) argument
[all...]
/haiku/headers/posix/arpa/
H A Dinet.h23 char* inet_net_ntop(int family, const void* source, int bits,
25 int inet_net_pton(int family, const char* sourceString, void* dest,
31 const char* inet_ntop(int family, const void* source, char* dest,
33 int inet_pton(int family, const char* sourceString, void* dest);
/haiku/src/bin/network/route/
H A Droute.cpp49 int family; member in struct:address_family
78 printf("usage: %s [command] [<interface>] [<address family>] "
115 for (int32 i = 0; kFamilies[i].family >= 0; i++) {
137 return address.SetTo(kFamilies[familyIndex].family, argument,
154 return mask.SetToMask(kFamilies[familyIndex].family, prefixLength) == B_OK;
189 // find family (we use the family of the first address as this is
190 // called on a socket for a single family)
191 const address_family *family = NULL; local
192 for (int32 i = 0; kFamilies[i].family >
344 const address_family *family = NULL; local
[all...]

Completed in 285 milliseconds

1234567