Searched refs:to (Results 176 - 200 of 284) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/network/stack/
H A Dinterfaces.cpp222 InterfaceAddress::SetLocal(const sockaddr* to) argument
224 return Set(&local, to);
229 InterfaceAddress::SetDestination(const sockaddr* to) argument
231 return Set(&destination, to);
236 InterfaceAddress::SetMask(const sockaddr* to) argument
238 return Set(&mask, to);
371 InterfaceAddress::Set(sockaddr** _address, const sockaddr* to) argument
375 if (to == NULL || to->sa_family == AF_UNSPEC) {
384 size_t size = max_c(to
[all...]
/haiku/src/apps/cortex/NodeManager/
H A DNodeGroup.h16 * 3. The name of the author may not be used to endorse or promote products
44 // - cycling support needs to be thoroughly defined; ie. what
48 // the cycling mechanism. Is there any possible way to avoid
61 // How about handling addition of a node to a group while it's
67 // 3) you wish to connect a new filter in the chain with minimal
78 // to tmStart+latency+pad,
83 // (pad is the estimated amount of time taken to stop, break
93 // to its output's destination, with the original format.)
106 // +++++ [e.moon 3dec99] need to include these for calcLatencyFn impl
222 // [e.moon 13oct99] moved method definition here to kee
[all...]
/haiku/headers/libs/agg/
H A Dagg_font_cache_manager.h5 // Permission to copy, use, modify, sell and distribute this software
8 // warranty, and with no claim as to its suitability for any purpose.
357 void precache(unsigned from, unsigned to) argument
359 for(; from <= to; ++from) glyph(from);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.h130 uint32 to, bool uids);
163 FetchCommand(uint32 from, uint32 to,
236 /*! Just send a expunge command to delete kDeleted flagged messages. The
/haiku/src/tools/anyboot/
H A Danyboot.cpp113 0xff, 0xff, 0xff, // CHS first block (default to LBA)
115 0xff, 0xff, 0xff, // CHS last block (default to LBA)
130 // use chs which has a high potential of failure due to the geometry
144 checkError(written != 16, "failed to write partition entry");
149 checkError(written != 4, "failed to make image bootable");
156 copyLoop(int from, int to, off_t position) argument
163 ssize_t written = pwrite(to, sCopyBuffer, copyLength, position);
232 checkError(outputFileHandle < 0, "failed to open output file");
235 checkError(isoFileHandle < 0, "failed to open ISO file");
239 checkError(result != 0, "failed to sta
[all...]
/haiku/headers/private/kernel/vm/
H A DVMAddressSpace.h275 #define vm_swap_address_space(from, to) arch_vm_aspace_swap(from, to)
/haiku/src/bin/
H A Dreindex.cpp230 // creates index to that attribute if necessary
251 // write attribute back to file
254 fprintf(stderr, "%s: could not write attribute '%s' to file \"%s\":"
267 copyIndicesFromVolume(const char *path, BEntry &to) argument
270 if (to.GetRef(&ref) != B_OK) {
313 "the path to the source volume\n", cmd);
/haiku/src/apps/bootmanager/
H A Dbootman.S164 ; nicer way to get the size of a structure
203 ; si ... offset to string
344 ; Fill the missing space to reach byte 440
355 ; Magic marker "AA55" (to identify a valid boot record)
460 xor ax, ax ; Then jump to first entry
475 mov ax, [listItemCount] ; Then jump to last entry
560 jc printAndHalt ; Failed to read sector
618 add si, ax ; Skip name to BootLoaderAddess
/haiku/headers/posix/
H A Dstdio.h93 extern int rename(const char *from, const char *to);
94 extern int renameat(int fromFD, const char *from, int toFD, const char *to);
/haiku/headers/private/kernel/
H A Ddebug.h92 // Macros for for placing marker functions. They can be used to mark the
94 // Note that in order for these to work, the kernel must be built with -fno-toplevel-reorder.
185 extern status_t debug_memcpy(team_id teamID, void* to, const void* from,
187 extern ssize_t debug_strlcpy(team_id teamID, char* to, const char* from,
/haiku/src/build/libroot/
H A Dfunction_remapper.cpp266 renameat(int fromFD, const char* from, int toFD, const char* to) argument
270 return _haiku_build_renameat(fromFD, from, toFD, to);
275 // fs_attr_* functions only need to be remapped on Haiku
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DAX88178Device.cpp59 // RXCTL_PROMISCUOUS, // forward all frames up to the host
60 // RXCTL_ALL_MULTICAT, // forward all multicast frames up to the host
61 // RXCTL_SEP, // forward frames with CRC error up to the host
62 // RXCTL_BROADCAST, // forward broadcast frames up to the host
64 // matching to multicast filter up to the host
66 // to multicast filter up to the host
126 SW_RESET_BIT6 = 0x40 // always set to 1
258 size_t to local
[all...]
/haiku/src/kits/interface/
H A DBitmap.cpp76 /*! \brief Returns the number of bytes per row needed to store the actual
81 \return The number of bytes per row needed to store data for a row, or
147 /*! \brief Returns the number of bytes per row needed to store the bitmap
151 \return The number of bytes per row needed to store data for a row, or
158 // align to int32
174 \c B_ANY_BYTES_PER_ROW to let the constructor choose an appropriate
202 it shall be possible to attach BView to the bitmap and draw into
233 it shall be possible to attach BView to th
752 ImportBits(const void* data, int32 length, int32 bpr, color_space colorSpace, BPoint from, BPoint to, BSize size) argument
777 ImportBits(const void* data, int32 length, int32 bpr, color_space colorSpace, BPoint from, BPoint to, int32 width, int32 height) argument
831 ImportBits(const BBitmap* bitmap, BPoint from, BPoint to, BSize size) argument
845 ImportBits(const BBitmap* bitmap, BPoint from, BPoint to, int32 width, int32 height) argument
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A Darch_traps.S42 # switch to kernel stack, SSCRATCH will hold user SP
/haiku/src/servers/app/
H A DServerFont.cpp44 // functions needed to convert a freetype vector graphics to a BShape
56 MoveToFunc(const FT_Vector *to, void *user) argument
58 ((BShape *)user)->MoveTo(VectorToPoint(to));
64 LineToFunc(const FT_Vector *to, void *user) argument
66 ((BShape *)user)->LineTo(VectorToPoint(to));
72 ConicToFunc(const FT_Vector *control, const FT_Vector *to, void *user) argument
78 controls[2] = VectorToPoint(to);
86 CubicToFunc(const FT_Vector *control1, const FT_Vector *control2, const FT_Vector *to, void *user) argument
92 controls[2] = VectorToPoint(to);
[all...]
/haiku/headers/os/drivers/
H A DKernelExport.h76 #define B_UNHANDLED_INTERRUPT 0 /* pass to next handler */
80 /* Flags that can be passed to install_io_interrupt_handler() */
124 // TODO: rename those to something more meaningful
237 /* safe methods to access user memory without having to lock it */
238 extern status_t user_memcpy(void *to, const void *from, size_t size);
239 extern ssize_t user_strlcpy(char *to, const char *from, size_t size);
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js820 // Apparently supplying ImageData to createPattern fails in Chrome.
930 var to = this.points[pointIndex++];
932 control2.y, to.x, to.y);
939 console.warn('shape op arc to not implemented');
1491 console.warn('round rects not implemented, falling back to rect');
1507 var to = new RemotePoint(remoteMessage);
1511 context.lineTo(to.x, to.y);
1524 var to
[all...]
/haiku/src/apps/codycam/
H A DFtpClient.cpp363 string to = "RNTO "; local
368 to += newPath;
373 if (_SendRequest(to)) {
474 // Thanks to Stephen van Egmond for catching a bug here
564 // we're done with nnn when we get to a "nnn blahblahblah"
606 // Here we send a "pasv" command and connect to the remote server
607 // on the port it sends back to us
650 // Here we bind to a local port and send a PORT command
/haiku/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.cpp47 ShapeIterator(Icon *icon, PathSourceShape *to, BPoint offset, const char *name);
68 ShapeIterator::ShapeIterator(Icon *icon, PathSourceShape *to, BPoint offset, argument
73 fShape = to;
275 B_TRANSLATE("The text you are trying to import is quite long, "
306 //printf("switching to run %d\n", currentRun);
/haiku/headers/cpp/
H A Deditbuf.h16 along with this library; see the file COPYING. If not, write to the Free
20 compiled with a GNU compiler to produce an executable, this does not cause
21 the resulting executable to be covered by the GNU General Public License.
37 // At some point, it might be nice to parameterize this code
64 struct edit_buffer *buffer; // buffer that 'start' and 'end' belong to
71 Assign length of STR to *LENP.
75 void assign(struct edit_string *src); // copy bytes from src to this
106 // If 'insert_before()' is true the mark will be adjusted to be
126 // A 'edit_buffer' coerced to a edit_string is the string of
133 // to hav
[all...]
/haiku/headers/private/net/
H A Dnet_buffer.h77 net_buffer* to);
/haiku/src/system/libroot/posix/glibc/arch/ppc/
H A Dlshift.S16 License along with the GNU C Library; if not, write to the Free
30 slwi r10,r5,2 /* convert limbs to bytes */
64 /* Guaranteed not to succeed. */
68 of size 4*12 bytes. We have to do this (or something) to make this PIC. */
70 bltl- cr0,L(boom) # Never taken, only used to set LR.
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dlock.cpp54 as spinlock as that could be expensive in userland (due to spinlock holder
64 panic("Failed to create thread spinlock semaphore!");
356 // have to wait.
366 // we need to wait
386 // have to wait.
398 // we need to wait
430 // We failed to get the lock -- dequeue from waiter list.
450 // Decrement the count. ATM this is all we have to do. There's at least
453 // held) -- so our leaving doesn't make a difference to the ones behind us
499 // If we're already the lock holder, we just need to incremen
649 mutex_switch_lock(mutex* from, mutex* to) argument
663 mutex_switch_from_read_lock(rw_lock* from, mutex* to) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRequestBuilder.h70 status_t Rename(const char* from, const char* to);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPConnectionWorker.cpp194 // able to assign the data to the correct message beforehand.
267 // Enqueue command to fetch the message bodies
367 uint32 to = fLastIndex;
368 uint32 from = fFirstIndex + kMaxFetchEntries < to
371 printf("IMAP: get entries from %" B_PRIu32 " to %" B_PRIu32 "\n",
372 from, to);
375 IMAP::FetchMessageEntriesCommand fetch(entries, from, to, false);
380 // Determine how much we need to download
383 // seem to b
[all...]

Completed in 262 milliseconds

1234567891011>>