Searched refs:bytes (Results 326 - 350 of 531) sorted by relevance

<<11121314151617181920>>

/haiku-fatelf/src/preferences/shortcuts/
H A DShortcutsWindow.cpp714 const char* bytes; local
723 } else if ((msg->FindString("bytes", &bytes) == B_OK)
726 bytes, key);
733 } else if (msg->FindString("text", &bytes) == B_OK) {
734 if ((bytes[0] == '(')&&(bytes[1] == 'C')) {
748 column, bytes);
/haiku-fatelf/src/apps/mail/
H A DComboBox.cpp129 virtual void KeyDown(const char *bytes, int32 numBytes);
166 virtual void KeyDown(const char *bytes, int32 numBytes);
404 void BComboBox::ChoiceListView::KeyDown(const char *bytes, int32 /*numBytes*/) argument
409 uchar aKey = bytes[0];
608 BComboBox::TextInput::KeyDown(const char *bytes, int32 numBytes) argument
611 uchar aKey = bytes[0];
673 BView::KeyDown(bytes, numBytes);
732 BTextView::KeyDown(bytes, numBytes);
736 BTextView::KeyDown(bytes, numBytes);
H A DEnclosures.cpp462 TListView::KeyDown(const char *bytes, int32 numBytes) argument
464 BListView::KeyDown(bytes,numBytes);
466 if (numBytes == 1 && *bytes == B_DELETE)
/haiku-fatelf/src/libs/print/libgutenprint/src/cups/
H A Drastertoprinter.c89 static void cups_writefunc(void *file, const char *buf, size_t bytes);
90 static void cups_errfunc(void *file, const char *buf, size_t bytes);
984 fprintf(stderr, "DEBUG: Gutenprint: CUPS option count is %d (%d bytes)\n",
1124 fprintf(stderr, "DEBUG: Gutenprint: Printed total %.0f bytes\n",
1149 fprintf(stderr, "DEBUG: Gutenprint: Printed total %.0f bytes\n",
1171 cups_writefunc(void *file, const char *buf, size_t bytes) argument
1174 total_bytes_printed += bytes;
1175 fwrite(buf, 1, bytes, prn);
1179 cups_errfunc(void *file, const char *buf, size_t bytes) argument
1184 while (where < bytes)
[all...]
/haiku-fatelf/src/apps/installer/
H A DCopyEngine.cpp84 // TODO: One could subtract the bytes/items which were added to the
436 // we have read 0 bytes!
496 off_t bytes = 0; local
498 bytes = fBytesRead - fLastBytesRead;
502 fProgressReporter->ItemsWritten(items, bytes, fCurrentItem,
/haiku-fatelf/src/kits/interface/
H A DRadioButton.cpp283 BRadioButton::KeyDown(const char* bytes, int32 numBytes) argument
288 switch (bytes[0]) {
301 BControl::KeyDown(bytes, numBytes);
/haiku-fatelf/src/libs/print/libgutenprint/src/ghost/
H A Dijsgutenprint.c74 int bps; /* bytes per sample */
88 double bytes_left; /* bytes remaining to be read */
875 gutenprint_errfunc(void *file, const char *buf, size_t bytes) argument
880 while (where < bytes)
886 while (next_nl < bytes)
897 gutenprint_outfunc(void *data, const char *buffer, size_t bytes) argument
899 page_bytes_printed += bytes;
900 total_bytes_printed += bytes;
901 if ((data != NULL) && (buffer != NULL) && (bytes != 0))
902 fwrite(buffer, 1, bytes, (FIL
1121 size_t bytes = strlen(param->name) + strlen("Enable") + 1; local
1141 size_t bytes = strlen(param->name) + strlen("Enable") + 1; local
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/test/
H A Dparse-escp2394 my $bytes;
566 $bytes = $klen + 1 + $skipchars + $startoff;
576 increment_curpos($bytes);
/haiku-fatelf/src/preferences/locale/
H A DLanguageListView.cpp485 LanguageListView::KeyDown(const char* bytes, int32 numBytes) argument
487 if (bytes[0] == B_DELETE && fDeleteMessage != NULL) {
492 BOutlineListView::KeyDown(bytes, numBytes);
/haiku-fatelf/src/tests/kits/app/broster/
H A DGetRecentTester.cpp205 ssize_t bytes = node.WriteAttr(kSigAttr, B_MIME_STRING_TYPE, 0, sig, strlen(sig)+1); local
206 if (bytes >= 0)
207 err = bytes == (ssize_t)strlen(sig)+1 ? B_OK : B_FILE_ERROR;
209 err = bytes;
219 ssize_t bytes = node.WriteAttr(kFlagsAttr, kFlagsType, 0, flags, sizeof(int32)); local
220 if (bytes >= 0)
221 err = bytes == sizeof(int32) ? B_OK : B_FILE_ERROR;
223 err = bytes;
1404 ssize_t bytes = file.WriteAttr(kTypeAttr, B_MIME_STRING_TYPE, 0, local
1406 if (bytes >
[all...]
/haiku-fatelf/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp234 MemoryView::KeyDown(const char* bytes, int32 numBytes) argument
246 switch(bytes[0]) {
308 BView::KeyDown(bytes, numBytes);
/haiku-fatelf/headers/os/game/
H A DPushGameSound.h63 bool BytesReady(size_t* bytes);
/haiku-fatelf/headers/os/interface/
H A DColorControl.h51 virtual void KeyDown(const char* bytes, int32 numBytes);
H A DMenuField.h42 virtual void KeyDown(const char* bytes, int32 numBytes);
H A DMultiChannelControl.h28 virtual void KeyDown(const char* bytes, int32 numBytes) = 0;
/haiku-fatelf/headers/private/shared/
H A DCalendarView.h71 virtual void KeyDown(const char* bytes, int32 numBytes);
/haiku-fatelf/src/add-ons/kernel/file_systems/btrfs/
H A Dkernel_interface.cpp247 size_t bytes = bytesLeft; local
249 fileVecCount, vecs, count, &vecIndex, &vecOffset, &bytes);
253 pos += bytes;
254 bytesLeft -= bytes;
/haiku-fatelf/src/add-ons/kernel/file_systems/exfat/
H A Dkernel_interface.cpp248 size_t bytes = bytesLeft; local
250 fileVecCount, vecs, count, &vecIndex, &vecOffset, &bytes);
254 pos += bytes;
255 bytesLeft -= bytes;
/haiku-fatelf/src/add-ons/translators/rtf/
H A DRTF.cpp657 char bytes[2]; local
658 bytes[0] = read_char(stream);
659 bytes[1] = '\0';
660 BMemoryIO memory(bytes, 2);
/haiku-fatelf/src/add-ons/translators/sgi/
H A DSGIImage.cpp147 // bytesPerChannel number of bytes per channel
327 uint32 bytes = fWidth * fBytesPerChannel; local
328 //printf("reading %ld bytes 8 Bit uncompressed row: %ld, channel: %ld\n", bytes, y, z);
329 ret = fStream->Read(row, bytes);
385 uint32 bytes = fWidth * fBytesPerChannel; local
386 //printf("writing %ld bytes %ld byte/channel uncompressed row: %ld, channel: %ld\n", bytes, fBytesPerChannel, y, z);
387 ret = fStream->Write(row, bytes);
507 // reads 4 bytes fro
[all...]
/haiku-fatelf/src/apps/cortex/MediaRoutingView/
H A DMediaRoutingView.h226 const char *bytes,
/haiku-fatelf/src/apps/diskprobe/
H A DDataEditor.h51 status_t MoveBy(int32 bytes);
H A DDataView.h42 virtual void KeyDown(const char* bytes, int32 numBytes);
/haiku-fatelf/src/apps/icon-o-matic/gui/
H A DGradientControl.cpp237 GradientControl::KeyDown(const char* bytes, int32 numBytes) argument
245 switch (bytes[0]) {
263 switch (bytes[0]) {
311 BView::KeyDown(bytes, numBytes);
/haiku-fatelf/src/apps/mediaplayer/playlist/
H A DListViews.h63 virtual void KeyDown(const char* bytes, int32 numBytes);

Completed in 226 milliseconds

<<11121314151617181920>>