Searched refs:from (Results 51 - 75 of 386) sorted by relevance

1234567891011>>

/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp84 CommandActuator::CommandActuator(BMessage* from) argument
86 BArchivable(from)
111 LaunchCommandActuator::LaunchCommandActuator(BMessage* from) argument
113 CommandActuator(from)
118 while (from->FindString("largv", idx++, &temp) == B_OK) {
167 LaunchCommandActuator::Instantiate(BMessage* from) argument
169 if (validate_instantiation(from, "LaunchCommandActuator"))
170 return new LaunchCommandActuator(from);
232 MouseCommandActuator::MouseCommandActuator(BMessage* from) argument
234 CommandActuator(from),
306 MouseDownCommandActuator(BMessage* from) argument
337 Instantiate(BMessage* from) argument
356 MouseUpCommandActuator(BMessage* from) argument
387 Instantiate(BMessage* from) argument
407 MouseButtonCommandActuator(BMessage* from) argument
446 Instantiate(BMessage* from) argument
608 KeyStrokeSequenceCommandActuator( BMessage* from) argument
949 Instantiate(BMessage* from) argument
969 MIMEHandlerCommandActuator(BMessage* from) argument
1025 Instantiate(BMessage* from) argument
1044 BeepCommandActuator(BMessage* from) argument
1064 Instantiate(BMessage* from) argument
1087 MultiCommandActuator(BMessage* from) argument
1151 Instantiate(BMessage* from) argument
1207 MoveMouseCommandActuator(BMessage* from) argument
1362 MoveMouseToCommandActuator(BMessage* from) argument
1389 Instantiate(BMessage* from) argument
1420 MoveMouseByCommandActuator(BMessage* from) argument
1447 Instantiate(BMessage* from) argument
1626 SendMessageCommandActuator(BMessage* from) argument
1690 Instantiate(BMessage* from) argument
[all...]
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixAddress.cpp47 unix_copy_address(const sockaddr *from, sockaddr **to, bool replaceWithZeros, argument
60 if (from->sa_family != AF_UNIX)
63 *to = (sockaddr*)malloc(from->sa_len);
67 memcpy(*to, from, from->sa_len);
195 unix_set_to(sockaddr *address, const sockaddr *from) argument
197 if (address == NULL || from == NULL)
200 if (from->sa_family != AF_UNIX)
203 memcpy(address, from, from
242 unix_update_to(sockaddr *address, const sockaddr *from) argument
[all...]
/haiku/src/system/libroot/posix/
H A Duser_group_common.cpp198 BPrivate::copy_passwd_to_buffer(const passwd* from, passwd* entry, char* buffer, argument
201 return copy_passwd_to_buffer(from->pw_name, from->pw_passwd, from->pw_uid,
202 from->pw_gid, from->pw_dir, from->pw_shell, from->pw_gecos, entry,
275 BPrivate::copy_group_to_buffer(const group* from, group* entry, char* buffer, argument
279 while (from
352 copy_shadow_pwd_to_buffer(const spwd* from, spwd* entry, char* buffer, size_t bufferSize) argument
[all...]
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dtransform_procs.c39 scsi_cmd_generic_6 *from = (scsi_cmd_generic_6 *)cmd; local
44 switch (from->opcode) {
50 to->opcode = (from->opcode == READ_6) ? READ_10 : WRITE_10;
51 to->lba = B_HOST_TO_BENDIAN_INT32(((from->addr[0] & 0x1f) << 16)
52 | (from->addr[1] << 8) | from->addr[0]);
53 to->lun = (from->addr[0] & CMD_LUN) >> CMD_LUN_SHIFT;
54 to->control = from->ctrl;
55 if (from->len == 0) {
60 to->length = B_HOST_TO_BENDIAN_INT16((uint16)from
100 scsi_cmd_generic_6 *from = (scsi_cmd_generic_6 *)cmd; local
[all...]
/haiku/headers/build/os/app/
H A DMessenger.h23 BMessenger(const BMessenger &from);
28 BMessenger &operator=(const BMessenger &from);
/haiku/headers/os/interface/
H A DGridView.h20 BGridView(BMessage* from);
26 static BArchivable* Instantiate(BMessage* from);
H A DGroupView.h21 BGroupView(BMessage* from);
27 static BArchivable* Instantiate(BMessage* from);
H A DCardView.h16 BCardView(BMessage* from);
22 static BArchivable* Instantiate(BMessage* from);
H A DCardLayout.h14 BCardLayout(BMessage* from);
32 static BArchivable* Instantiate(BMessage* from);
38 virtual status_t AllUnarchived(const BMessage* from);
42 virtual status_t ItemUnarchived(const BMessage* from,
/haiku/src/bin/network/traceroute/
H A Dfindsaddr-haiku.c24 findsaddr(const struct sockaddr_in *to, struct sockaddr_in *from) argument
42 memcpy(from, request->source, sizeof(struct sockaddr_in));
/haiku/src/kits/interface/
H A DViewLayoutItem.cpp30 BViewLayoutItem::BViewLayoutItem(BMessage* from) argument
32 BLayoutItem(BUnarchiver::PrepareArchive(from)),
36 BUnarchiver unarchiver(from);
198 BViewLayoutItem::AllUnarchived(const BMessage* from) argument
203 return BLayoutItem::AllUnarchived(from);
208 BViewLayoutItem::Instantiate(BMessage* from) argument
210 if (validate_instantiation(from, "BViewLayoutItem"))
211 return new(std::nothrow) BViewLayoutItem(from);
H A DViewLayoutItem.h14 BViewLayoutItem(BMessage* from);
43 virtual status_t AllUnarchived(const BMessage* from);
44 static BArchivable* Instantiate(BMessage* from);
/haiku/src/add-ons/translators/wonderbrush/support/
H A Dbitmap_compression.cpp118 extract_bitmap(BBitmap** bitmap, const BMessage* from, const char* fieldName) argument
121 if (bitmap && from) {
125 if ((ret = from->FindMessage(fieldName, &bitmapArchive)) >= B_OK) {
137 if (((ret = from->FindData(fieldName,
141 || (ret = from->FindData("current compressed data",
144 && (ret = from->FindRect("construction bounds",
148 if (from->FindInt32("compression", (int32*)&compression) < B_OK)
151 if (from->FindInt32("format", (int32*)&format) < B_OK)
/haiku/src/add-ons/kernel/drivers/disk/virtual/nbd/
H A Dnbd.h24 uint64 from; member in struct:nbd_request
/haiku/src/add-ons/kernel/network/stack/
H A Dancillary_data.h22 void* move_ancillary_data(ancillary_data_container* from,
/haiku/src/apps/bootmanager/
H A DBootDrive.h26 void AddSupportedMenus(const BootMenuList& from,
H A DBootDrive.cpp53 /*! Adds all boot menus from the list \a from that support the drive to \a to.
56 BootDrive::AddSupportedMenus(const BootMenuList& from, BootMenuList& to) argument
58 for (int32 i = 0; i < from.CountItems(); i++) {
59 BootMenu* menu = from.ItemAt(i);
/haiku/headers/private/kernel/boot/platform/bios_ia32/
H A Dplatform_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
/haiku/headers/private/syslog_daemon/
H A Dsyslog_daemon.h19 // This message is sent from both, the POSIX syslog API and the kernel's
23 thread_id from; member in struct:syslog_message
/haiku/headers/private/kernel/arch/sparc/
H A Darch_kernel_args.h10 # error This file is included from <boot/kernel_args.h> only
32 // platform type we booted from
/haiku/headers/private/kernel/arch/ppc/
H A Darch_kernel_args.h9 # error This file is included from <boot/kernel_args.h> only
33 // platform type we booted from
/haiku/src/apps/haikudepot/model/
H A DCaptcha.h23 Captcha(BMessage* from);
H A DUserCredentials.cpp17 UserCredentials::UserCredentials(BMessage* from) argument
19 from->FindString(KEY_NICKNAME, &fNickname);
20 from->FindString(KEY_PASSWORD_CLEAR, &fPasswordClear);
21 from->FindBool(KEY_IS_SUCCESSFUL, &fIsSuccessful);
/haiku/src/system/kernel/util/
H A Dring_buffer.cpp232 /*! Reads data from the ring buffer, but doesn't remove the data from it.
238 \return The number of bytes actually read from the buffer.
305 /*! Moves data from one ring buffer to another.
309 \param from The source ring buffer.
314 struct ring_buffer *from)
316 if (length > from->in)
317 length = from->in;
324 if ((from->first + length) <= from
313 ring_buffer_move(struct ring_buffer *to, ssize_t length, struct ring_buffer *from) argument
[all...]
/haiku/src/servers/app/
H A DIntPoint.h80 IntPoint::operator=(const IntPoint& from) argument
82 x = from.x;
83 y = from.y;

Completed in 93 milliseconds

1234567891011>>