Searched refs:code (Results 176 - 200 of 477) sorted by relevance

1234567891011>>

/haiku/src/system/boot/platform/bios_ia32/
H A Dconsole.cpp165 if (key.code.ascii == 0) {
166 switch (key.code.bios) {
187 return key.code.ascii;
/haiku/src/add-ons/kernel/network/dns_resolver/server/
H A Dmain.cpp143 int32 code; local
144 size = read_port(gRequestPort, &code, buffer, size);
149 switch (code) {
/haiku/src/kits/network/libnetservices2/
H A DHttpResult.cpp25 switch (code / 100) {
46 switch (static_cast<BHttpStatusCode>(code)) {
135 return static_cast<BHttpStatusCode>(code);
/haiku/src/apps/resedit/
H A DResFields.cpp14 TypeCodeField::TypeCodeField(const type_code &code, ResourceData *data) argument
15 : BStringField(MakeTypeString(code).String()),
16 fTypeCode(code),
H A DResFields.h19 TypeCodeField(const type_code &code, ResourceData *data);
/haiku/src/system/boot/platform/atari_m68k/
H A Dconsole.cpp256 if (key.code.ascii == 0) {
257 switch (key.code.bios) {
274 return key.code.ascii;
/haiku/src/preferences/keymap/
H A DKeyboardLayout.h25 uint32 code; member in struct:Key
82 int32 code);
/haiku/headers/os/support/
H A DStringList.h71 virtual bool AllowsTypeCode(type_code code) const;
74 virtual status_t Unflatten(type_code code, const void* buffer,
/haiku/headers/os/interface/
H A DCheckBox.h47 virtual void MouseMoved(BPoint where, uint32 code,
69 virtual status_t Perform(perform_code code, void* data);
H A DPictureButton.h55 virtual void MouseMoved(BPoint where, uint32 code,
79 virtual status_t Perform(perform_code code, void* data);
H A DListItem.h50 virtual status_t Perform(perform_code code, void* arg);
/haiku/src/servers/app/
H A DDelayedMessage.h16 //! Method by which to merge DelayedMessages with the same code.
62 the same code can be merged according to various rules. Each message can
69 typedef void(*FailureCallback)(int32 code, port_id port, void* data);
71 DelayedMessage(int32 code, bigtime_t delay,
79 // Merge messages with the same code according to the following
/haiku/headers/private/media/
H A DEncoderPlugin.h55 virtual status_t AddTrackInfo(uint32 code, const void* data,
82 virtual status_t Perform(perform_code code, void* data);
/haiku/src/system/boot/platform/efi/arch/x86/
H A Darch_smp_32.cpp35 unsigned char code[8]; member in struct:gdtr
58 TRACE("copying the trampoline code to %p from %p\n", (char*)trampolineCode, (const void*)&smp_trampoline);
59 TRACE("size of trampoline code = %" PRIu64 " bytes\n", (uint64)&smp_trampoline_end - (uint64)&smp_trampoline);
79 COPY_ARRAY(args->gdtr.code, 0xff, 0xff, 0, 0, 0, 0x9a, 0xcf, 0);
/haiku/src/system/boot/platform/efi/arch/x86_64/
H A Darch_smp_64.cpp36 unsigned char code[8]; member in struct:gdtr
60 TRACE("copying the trampoline code to %p from %p\n", (char*)trampolineCode, (const void*)&long_smp_trampoline);
61 TRACE("size of trampoline code = %" PRIu64 " bytes\n", (uint64)&long_smp_trampoline_end - (uint64)&long_smp_trampoline);
81 COPY_ARRAY(args->gdtr.code, 0xff, 0xff, 0, 0, 0, 0x9a, 0xcf, 0);
/haiku/headers/private/drivers/
H A Dscsi_periph.h30 // "standardized" error code to simplify handling of scsi errors
42 status_t error_code : 32; // Be error code
43 uint32 action : 8; // err_act code
46 #define MK_ERROR( aaction, code ) ({ \
47 err_res _res = {.error_code = (code), .action = (aaction) }; \
/haiku/src/bin/rc/
H A Ddecompile.cpp90 make_code(uint32 value, char *code) argument
92 code[0] = (value >> 24) & 0xFF;
93 if (isprint(code[0])) {
94 code[1] = (value >> 16) & 0xFF;
95 if (isprint(code[1])) {
96 code[2] = (value >> 8) & 0xFF;
97 if (isprint(code[2])) {
98 code[3] = value & 0xFF;
99 if (isprint(code[3])) {
100 code[
114 char code[5]; local
193 char code[5]; local
[all...]
H A Dparser.y232 add_resource($2, $3.type.code, $3);
346 $$.type.code = $1;
352 $$.type.code = $1;
536 add_builtin_type(type_code code, const char* name)
539 type.code = code;
551 add_user_type(res_id_t id, type_code code, const char* name, list_t list)
557 type.code = code;
698 if (data.type.code
[all...]
/haiku/headers/os/media/
H A DSound.h44 virtual status_t Perform(int32 code, ...);
/haiku/headers/private/app/
H A DLinkReceiver.h32 status_t GetNextMessage(int32& code, bigtime_t timeout = B_INFINITE_TIMEOUT);
H A DLinkSender.h30 status_t StartMessage(int32 code, size_t minSize = 0);
/haiku/src/add-ons/input_server/devices/wacom/
H A DMasterServerDevice.h31 uint32 code,
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DViewContainer.h28 virtual void MouseMoved(BPoint where, uint32 code,
/haiku/src/kits/interface/
H A DInput.cpp165 BInputDevice::Control(uint32 code, BMessage *message) argument
174 command.AddInt32("code", code);
213 BInputDevice::Control(input_device_type type, uint32 code, BMessage *message) argument
219 command.AddInt32("code", code);
/haiku/src/add-ons/translators/gif/
H A DGIFSave.h51 status_t OutputCode(short code, int BITS,

Completed in 96 milliseconds

1234567891011>>