Searched refs:bytes (Results 351 - 364 of 364) sorted by relevance

<<1112131415

/haiku/src/kits/interface/
H A DView.cpp1339 BView::KeyDown(const char* bytes, int32 numBytes) argument
1350 BView::KeyUp(const char* bytes, int32 numBytes) argument
5029 ssize_t bytes; local
5030 if (message->FindData("bytes", B_STRING_TYPE,
5031 (const void**)&string, &bytes) == B_OK)
5032 KeyDown(string, bytes - 1);
5040 ssize_t bytes; local
5041 if (message->FindData("bytes", B_STRING_TYPE,
5042 (const void**)&string, &bytes) == B_OK)
5043 KeyUp(string, bytes
[all...]
H A DColumnListView.cpp1805 BColumnListView::KeyDown(const char* bytes, int32 numBytes) argument
1807 char key = bytes[0];
1915 BView::KeyDown(bytes, numBytes);
/haiku/src/kits/tracker/
H A DTracker.cpp500 ssize_t bytes; local
502 (const void**)&itemNode, &bytes) == B_OK) {
H A DPoseView.cpp6628 BPoseView::KeyDown(const char* bytes, int32 count) argument
6630 char key = bytes[0];
6723 _inherited::KeyDown(bytes, count);
6829 fFilterStrings.LastItem()->AppendChars(bytes, 1);
6830 fCountView->AddFilterCharacter(bytes);
6856 sMatchString.AppendChars(bytes, 1);
6858 sMatchString.SetToChars(bytes, 1);
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c660 "%.20s %d %s\015\012Server: %s\015\012Content-Type: %s\015\012Date: %s\015\012Last-Modified: %s\015\012Accept-Ranges: bytes\015\012Connection: close\015\012",
680 "Content-Range: bytes %lld-%lld/%lld\015\012Content-Length: %lld\015\012",
740 // LOG_ERR, "out of memory reallocating a string to %ld bytes",
924 ** characters. Three 8-bit binary bytes are turned into four 6-bit
953 /* Do base-64 decoding on a string. Ignore any non-base64 bytes.
954 ** Return the actual number of bytes generated. The decoded size will
2835 mode links bytes last-changed name\n\
3256 ** to 2 bytes. Unfortunately this doesn't fix the problem for CGIs
3272 /* And read up to 2 bytes. */
3947 char bytes[4 local
[all...]
/haiku/src/tools/fs_shell/
H A Dvfs.cpp1826 // bytes left of the current iovec
1837 // actually available bytes
1849 fssh_size_t bytes = size; local
1852 tempCount, &bytes);
1855 tempCount, &bytes);
1860 totalSize += bytes;
1865 if (size != bytes || vecIndex >= vecCount) {
1866 // there are no more bytes or iovecs, let's bail out
/haiku/src/add-ons/kernel/drivers/audio/cmedia/
H A Dpcm.c285 /* lower nybble = bytes per sample */
757 ((sv_timing *)data)->bytes = port->rd_total;
773 ((sv_timing *)data)->bytes = port->wr_total;
1414 case 0x11: /* bytes */
1459 int to_write = *nwritten; /* in play bytes, not input bytes! */
1537 case 0x11: /* bytes */
/haiku/src/kits/package/manager/
H A DPackageManager.cpp1184 const char* packageName, float completionPercentage, off_t bytes,
1183 ProgressPackageDownloadActive( const char* packageName, float completionPercentage, off_t bytes, off_t totalBytes) argument
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEVolume.cpp1069 size_t bytes = 0; local
1071 bytes = requestInfo.length;
1073 buffer, bytes, requestInfo.isWrite);
1078 buffer, bytes);
/haiku/src/add-ons/kernel/network/stack/
H A Ddatalink.cpp199 atomic_add64((int64*)&device->stats.send.bytes, packetSize);
370 //dprintf("send buffer (%ld bytes) to interface %s (route flags %lx)\n",
/haiku/src/servers/app/drawing/Painter/
H A DPainter.cpp1092 int32 bytes = (r.right - r.left + 1) * 4; local
1106 gfxset32(dst, color.data32, bytes);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300.h1383 extern void ar9300_wowoffload_download_acer_magic(struct ath_hal *ah, HAL_BOOL valid, u_int8_t* datap, u_int32_t bytes);
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/usb/wlan/
H A Dif_run.c1227 uint64_t bytes; local
1260 bytes = *temp;
1261 if (bytes != be64toh(0xffffff0210280210ULL)) {
1424 * firmware. Limit amount of data passed to 64-bytes at a
3197 "transfer complete: %d bytes @ index %d\n", actlen, index);
3218 "data overflow, %u bytes\n", m->m_pkthdr.len);
3228 * Align end on a 4-byte boundary, pad 8 bytes (CRC +
3230 * bytes:
/haiku/src/apps/deskbar/
H A DSwitcher.cpp173 virtual void KeyDown(const char* bytes, int32 numBytes);
1900 TIconView::KeyDown(const char* /*bytes*/, int32 /*numBytes*/)

Completed in 377 milliseconds

<<1112131415