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

1234567891011>>

/haiku/src/kits/storage/mime/
H A DMimeInfoUpdater.cpp121 ssize_t bytes = node.WriteAttr(kFileTypeAttr, kFileTypeType, 0, type, local
123 if (bytes < B_OK)
124 err = bytes;
126 err = (bytes != len ? (status_t)B_FILE_ERROR : (status_t)B_OK);
/haiku/src/preferences/shortcuts/
H A DShortcutsSpec.h51 const char* bytes, int32 key);
79 uint32 fCommandLen; // number of bytes in fCommand buffer
H A DShortcutsSpec.cpp488 ShortcutsSpec::ProcessColumnKeyStroke(int whichColumn, const char* bytes, argument
505 switch (bytes[0]) {
525 uint32 newCharLen = strlen(bytes);
526 if ((newCharLen > 0) && (bytes[0] >= ' ')) {
546 strncat(fCommand, bytes, fCommandLen);
564 switch(bytes[0]) {
579 char letter = bytes[0];
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DAlphaSlider.h31 virtual void KeyDown(const char* bytes, int32 numBytes);
/haiku/src/kits/media/legacy/
H A DOldBufferStreamManager.h56 void SetBufferSize(int32 bytes);
/haiku/src/preferences/repositories/
H A DRepositoriesView.h26 virtual void KeyDown(const char* bytes, int32 numBytes);
/haiku/src/apps/softwareupdater/
H A DCheckManager.h53 off_t bytes, off_t totalBytes);
/haiku/src/apps/mail/
H A DFindWindow.h83 virtual void KeyDown(const char* bytes, int32 numBytes);
H A DEnclosures.h82 virtual void KeyDown(const char* bytes,int32 numBytes);
/haiku/src/kits/interface/
H A DTextInput.h35 virtual void KeyDown(const char *bytes, int32 numBytes);
/haiku/src/apps/deskcalc/
H A DExpressionTextView.h28 virtual void KeyDown(const char* bytes, int32 numBytes);
/haiku/src/bin/debug/strace/
H A DContext.h58 string FormatSigned(int64 value, int bytes = 8) const;
/haiku/src/bin/bfs_tools/lib/
H A DBitmap.cpp205 int32 bytes = node->data.indirect.length << fDisk->BlockShift();
206 block_run *indirect = (block_run *)malloc(bytes);
211 bytes) <= 0)
214 int32 runs = bytes / sizeof(block_run);
H A DInode.cpp530 printf("could only write %ld bytes (from %ld) at attribute \"%s\"\n",
787 //printf("### read %ld bytes at %lld\n",size,pos);
793 ssize_t bytes = min_c((off_t)size, fRunBlockEnd - pos);
795 //printf("### read %ld bytes from %lld\n### --\n",bytes,fDisk->ToOffset(fRun) + pos - fRunFileOffset);
796 bytes = fDisk->ReadAt(fDisk->ToOffset(fRun) + pos - fRunFileOffset,
797 buffer, bytes);
798 if (bytes <= 0) {
799 if (bytes == 0) {
800 printf("could not read bytes a
[all...]
/haiku/src/bin/bfs_tools/
H A Dbfswhich.cpp85 int32 bytes = data->indirect.length << disk.BlockShift();
86 block_run* indirect = (block_run*)malloc(bytes);
89 if (disk.ReadAt(disk.ToOffset(data->indirect), indirect, bytes) <= 0)
92 int32 runs = bytes / sizeof(block_run);
/haiku/headers/private/kernel/util/
H A Dring_buffer.h39 void ring_buffer_flush(struct ring_buffer *buffer, size_t bytes);
/haiku/src/apps/icon-o-matic/gui/
H A DGradientControl.h49 virtual void KeyDown(const char* bytes, int32 numBytes);
/haiku/src/servers/registrar/
H A DRecentEntries.cpp362 ssize_t bytes = node.ReadAttr("BEOS:TYPE", B_MIME_STRING_TYPE, local
364 if (bytes < B_OK)
365 error = bytes;
367 result[bytes] = '\0';
/haiku/src/bin/pkgman/
H A DPackageManager.h51 off_t bytes, off_t totalBytes);
/haiku/src/tests/kits/net/service/
H A Dtestserver.py306 def write(self, bytes):
318 def write(self, bytes):
319 self.buf.write(bytes)
333 def write(self, bytes):
334 self.compressor.write(bytes)
345 def write(self, bytes):
346 self.raw.write(bytes)
/haiku/src/tests/kits/net/netservices2/
H A Dtestserver.py306 def write(self, bytes):
318 def write(self, bytes):
319 self.buf.write(bytes)
333 def write(self, bytes):
334 self.compressor.write(bytes)
345 def write(self, bytes):
346 self.raw.write(bytes)
/haiku/src/system/boot/platform/generic/
H A Dtext_menu.cpp188 // copy as much bytes as possible
189 int32 bytes = width; local
190 if (bytes > length - i)
191 bytes = length - i;
193 memcpy(buffer, text + i, bytes);
194 buffer[bytes] = '\0';
198 bytes = pos - buffer;
199 else if (bytes < length - i) {
203 bytes = pos - buffer;
209 i += bytes;
[all...]
/haiku/src/apps/diskprobe/
H A DFindWindow.cpp57 virtual void KeyDown(const char* bytes, int32 numBytes);
177 FindTextView::KeyDown(const char* bytes, int32 numBytes) argument
184 switch (bytes[0]) {
201 if (bytes[0] == B_BACKSPACE && --start < 0) {
208 BTextView::KeyDown(bytes, numBytes);
210 BTextView::KeyDown(bytes, numBytes);
212 if (bytes[0] == B_BACKSPACE)
222 if (!strchr("0123456789abcdefABCDEF", bytes[0]))
230 InsertText(bytes, 1, start, NULL);
235 BTextView::KeyDown(bytes, numByte
[all...]
/haiku/src/build/libbe/storage/
H A DNode.cpp372 ssize_t bytes = ReadAttr(name, B_STRING_TYPE, 0, data, info.size);
374 if (bytes < 0) {
375 error = bytes;
376 bytes = 0;
383 data[bytes] = 0;
/haiku/src/add-ons/kernel/bus_managers/scsi/
H A Ddma_buffer.cpp87 " bytes)", sg_list->size, max_sg_block_size);
106 SHOW_FLOW(1, "to_buffer=%d, %" B_PRIu32 " bytes", to_buffer, size);
115 size_t bytes; local
117 bytes = min_c( size, sg_list->size );
120 vm_memcpy_from_physical(buffer_data, sg_list->address, bytes,
123 vm_memcpy_to_physical(sg_list->address, buffer_data, bytes, false);
125 buffer_data += bytes;
151 * size - buffer size in bytes
179 B_PRId32 "/%" B_PRId32 " bytes)", size, boundary + 1);
202 " bytes", siz
[all...]

Completed in 321 milliseconds

1234567891011>>