Searched refs:from (Results 101 - 125 of 386) sorted by relevance

1234567891011>>

/haiku/headers/private/kernel/arch/m68k/
H A Darch_thread.h23 uint32 m68k_next_page_directory(Thread *from, Thread *to);
/haiku/headers/private/kernel/arch/
H A Dvm.h30 void arch_vm_aspace_swap(struct VMAddressSpace *from,
/haiku/src/add-ons/kernel/network/stack/
H A Dancillary_data.cpp109 Removes ancillary data from the given container. The associated memory is
144 Moves all ancillary data from container \c from to the end of the list of
147 \param from The container from which to remove the ancillary data.
153 move_ancillary_data(ancillary_data_container* from, argument
156 if (from == NULL || to == NULL)
159 ancillary_data *ancillaryData = from->data_list.Head();
160 to->data_list.MoveFrom(&from->data_list);
/haiku/headers/os/interface/
H A DGroupLayout.h14 BGroupLayout(BMessage* from);
39 static BArchivable* Instantiate(BMessage* from);
45 virtual status_t AllUnarchived(const BMessage* from);
48 virtual status_t ItemUnarchived(const BMessage* from,
/haiku/headers/private/kernel/boot/platform/efi/
H A Dplatform_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
/haiku/src/apps/haikudepot/model/
H A DUserUsageConditions.h23 UserUsageConditions(BMessage* from);
H A DDeskbarLink.h10 * Note that this file has been re-factored from `PackageManager.h` and
27 DeskbarLink(BMessage* from);
H A DPasswordRequirements.h21 PasswordRequirements(BMessage* from);
H A DAccessToken.h24 AccessToken(BMessage* from);
H A DScreenshotCoordinate.h20 ScreenshotCoordinate(const BMessage* from);
H A DUserDetail.h19 UserUsageConditionsAgreement(BMessage* from);
49 UserDetail(BMessage* from);
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4_address.cpp24 /*! Routing utility function: copies address \a from into a new address
26 If \a replaceWithZeros is set \a from will be replaced by an empty
28 If a \a mask is given it is applied to \a from (such that \a to is the
29 result of \a from & \a mask).
32 \return B_BAD_VALUE if any of \a from or \a mask refers to an uninitialized
37 ipv4_copy_address(const sockaddr *from, sockaddr **to, argument
49 if (from == NULL)
51 if (from->sa_len == 0 || (mask != NULL && mask->sa_len == 0))
53 if (from->sa_family != AF_INET)
60 memcpy(*to, from, sizeo
349 ipv4_set_to(sockaddr *address, const sockaddr *from) argument
373 const sockaddr_in *from = (const sockaddr_in *)_from; local
[all...]
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Dipv6_address.cpp41 /*! Routing utility function: copies address \a from into a new address
43 If \a replaceWithZeros is set \a from will be replaced by an empty
45 If a \a mask is given it is applied to \a from (such that \a to is the
46 result of \a from & \a mask).
49 \return B_BAD_VALUE if any of \a from or \a mask refers to an uninitialized
54 ipv6_copy_address(const sockaddr *from, sockaddr **to, argument
66 if (from == NULL)
68 if (from->sa_len == 0 || (mask != NULL && mask->sa_len == 0))
70 if (from->sa_family != AF_INET6)
77 memcpy(*to, from, sizeo
394 ipv6_set_to(sockaddr *address, const sockaddr *from) argument
418 const sockaddr_in6 *from = (const sockaddr_in6 *)_from; local
[all...]
/haiku/headers/private/kernel/arch/arm64/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/headers/private/kernel/arch/arm/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/src/preferences/shortcuts/
H A DShortcutsSpec.cpp142 ShortcutsSpec::ShortcutsSpec(const ShortcutsSpec& from) argument
149 fKey(from.fKey),
153 fMetaCellStateIndex[i] = from.fMetaCellStateIndex[i];
155 SetCommand(from.fCommand);
156 SetSelectedColumn(from.GetSelectedColumn());
158 for (int i = 0; i < from.CountFields(); i++)
160 static_cast<const BStringField*>(from.GetField(i))->String()), i);
164 ShortcutsSpec::ShortcutsSpec(BMessage* from) argument
174 if (from->FindString("command", &temp) != B_NO_ERROR) {
182 if (from
262 Instantiate(BMessage* from) argument
[all...]
H A DShortcutsSpec.h37 ShortcutsSpec(BMessage* from);
41 static BArchivable* Instantiate(BMessage* from);
/haiku/src/system/libnetwork/
H A Dsocket.cpp29 const r5_sockaddr_in *from = (r5_sockaddr_in *)_from; local
35 if (from == NULL)
38 if (from->sin_family == R5_AF_INET)
41 to->sin_family = from->sin_family;
43 to->sin_port = from->sin_port;
44 to->sin_addr.s_addr = from->sin_addr;
52 const sockaddr_in *from = (sockaddr_in *)_from; local
60 if (from->sin_family == AF_INET)
63 to->sin_family = from->sin_family;
65 to->sin_port = from
[all...]
/haiku/src/kits/interface/
H A DGridLayout.cpp169 BGridLayout::BGridLayout(BMessage* from) argument
171 BTwoDimensionalLayout(BUnarchiver::PrepareArchive(from)),
180 BUnarchiver unarchiver(from);
182 from->GetInfo(kColumnWeightField, NULL, &columns);
185 from->GetInfo(kRowWeightField, NULL, &rows);
195 if (from->FindFloat(kRowWeightField, i, &getter) == B_OK)
198 if (from->FindFloat(kRowSizesField, i * 2, &getter) == B_OK)
201 if (from->FindFloat(kRowSizesField, i * 2 + 1, &getter) == B_OK)
207 if (from->FindFloat(kColumnWeightField, i, &getter) == B_OK)
210 if (from
512 AllUnarchived(const BMessage* from) argument
519 Instantiate(BMessage* from) argument
547 ItemUnarchived(const BMessage* from, BLayoutItem* item, int32 index) argument
[all...]
H A DLayoutItem.cpp26 BLayoutItem::BLayoutItem(BMessage* from) argument
28 BArchivable(BUnarchiver::PrepareArchive(from)),
32 BUnarchiver(from).Finish();
175 BLayoutItem::AllUnarchived(const BMessage* from) argument
177 return BArchivable::AllUnarchived(from);
/haiku/src/libs/print/libprint/
H A DHalftoneView.cpp44 BPoint from(x, 0);
48 view.StrokeLine(from, to);
50 from.y = to.y+1;
53 view.StrokeLine(from, to);
55 from.y = to.y+1;
58 view.StrokeLine(from, to);
60 from.y = to.y+1;
63 view.StrokeLine(from, to);
/haiku/src/servers/notification/
H A DNotificationServer.cpp92 BMessage* spec, int32 from, const char* prop)
102 return BApplication::ResolveSpecifier(msg, index, spec, from, prop);
91 ResolveSpecifier(BMessage* msg, int32 index, BMessage* spec, int32 from, const char* prop) argument
/haiku/src/kits/support/
H A DPointerList.cpp377 _PointerList_::MoveItem(int32 from, int32 to) argument
379 if (from == to)
382 void* fromItem = ItemAt(from);
388 if (from < to)
389 memmove(items + from, items + from + 1, (to - from) * sizeof(void*));
391 memmove(items + to + 1, items + to, (from - to) * sizeof(void*));
/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport.cpp58 calc_angle(BPoint origin, BPoint from, BPoint to, bool degree) argument
62 double d = point_line_distance(from.x, from.y, origin.x, origin.y,
65 double a = point_point_distance(from, to);
66 double b = point_point_distance(from, origin);
/haiku/src/build/libbe/support/
H A DArchivable.cpp75 // TODO: Where do these get triggered from?
100 BArchivable::BArchivable(BMessage* from) argument
124 BArchivable* BArchivable::Instantiate(BMessage* from) argument
163 bool validate_instantiation(BMessage* from, const char* class_name) argument
168 if (!from)
181 err = from->FindString(B_CLASS_FIELD, index, &data);

Completed in 117 milliseconds

1234567891011>>