Searched refs:code (Results 51 - 75 of 477) sorted by relevance

1234567891011>>

/haiku/src/apps/haikudepot/ui/
H A DFilterView.h40 const BString& code);
42 const BString& code);
H A DUserUsageConditionsWindow.h39 static const BString _VersionText(const BString& code);
54 UserDetail& userDetail, BString& code);
56 UserDetail& userDetail, BString& code);
/haiku/src/libs/bsd/
H A Derr.c10 * 1. Redistributions of source code must retain the above copyright
89 errc(int eval, int code, const char *fmt, ...) argument
93 verrc(eval, code, fmt, ap);
98 verrc(int eval, int code, const char *fmt, va_list ap) argument
107 fprintf(err_file, "%s\n", strerror(code));
154 warnc(int code, const char *fmt, ...) argument
158 vwarnc(code, fmt, ap);
163 vwarnc(int code, const char *fmt, va_list ap) argument
175 fprintf(err_file, "%s\n", strerror(code));
/haiku/src/apps/icon-o-matic/import_export/
H A DExporter.h43 /*! Turns the status_t error code returned by \c Export into a string. */
44 virtual const char* ErrorCodeToString(status_t code) argument
45 { return strerror(code); }
/haiku/src/apps/haikudepot/packagemodel/
H A DScreenshotInfo.cpp22 ScreenshotInfo::ScreenshotInfo(const BString& code, argument
25 fCode(code),
/haiku/headers/os/media/
H A DTimeCode.h12 // Time code is always in the form HH:MM:SS:FF, it's the definition of "FF"
41 int* seconds, int* frames, const timecode_info* code = NULL);
44 bigtime_t* micros, const timecode_info* code = NULL);
47 int* seconds, int* frames, const timecode_info* code = NULL);
50 int32* lFrames, const timecode_info* code = NULL);
/haiku/src/servers/notification/
H A DNotificationReceived.cpp48 NotificationReceived::AllowsTypeCode(type_code code) const
50 return code == kTypeCode;
98 NotificationReceived::Unflatten(type_code code, const void* buffer, argument
101 if (code != kTypeCode)
/haiku/src/system/boot/platform/amiga_m68k/
H A Dkeyboard.h12 uint8 bios; // scan code
15 } code; member in union:key
/haiku/src/system/boot/platform/atari_m68k/
H A Dkeyboard.h12 uint8 bios; // scan code
15 } code; member in union:key
/haiku/src/system/boot/platform/bios_ia32/
H A Dkeyboard.h13 } code; member in union:key
/haiku/src/system/boot/platform/u-boot/
H A Dkeyboard.h13 } code; member in union:key
/haiku/src/tests/servers/app/newerClipping/drawing/
H A DDrawView.h16 virtual void MouseMoved(BPoint where, uint32 code,
/haiku/src/kits/media/
H A DWriterPlugin.cpp40 Writer::Perform(perform_code code, void* data) argument
/haiku/src/servers/app/
H A DTestServerLoopAdapter.cpp57 TestServerLoopAdapter::_DispatchMessage(int32 code, argument
60 switch (code) {
107 STRACE(("Server::MainLoop received unexpected code %" B_PRId32 " "
108 "(offset %" B_PRId32 ")\n", code, code - SERVER_TRUE));
H A DEventStream.cpp247 int32 code; local
248 bufferSize = read_port_etc(fPort, &code, buffer, bufferSize,
255 if (code == 'quit') {
259 if (code == 'insm') {
266 ObjectDeleter<BMessage> message(new BMessage(code));
279 printf("Unflatten event failed: %s, port message code was: %" B_PRId32
280 " - %c%c%c%c\n", strerror(status), code, (int8)(code >> 24),
281 (int8)(code >> 16), (int8)(code >>
[all...]
/haiku/src/system/boot/platform/next_m68k/
H A Dkeyboard.h12 uint8 bios; // scan code
15 } code; member in union:key
/haiku/src/apps/resedit/
H A DResourceData.h20 ResourceData(const type_code &code, const int32 &id,
25 void SetTo(const type_code &code, const int32 &id,
34 void SetType(const type_code &code);
/haiku/src/tests/servers/app/code_to_name/
H A Dcode_to_name.cpp46 print_code(BPath& path, int32 code) argument
62 if (++lineNumber != code)
66 printf("code %ld: %s\n", lineNumber, line);
71 printf("unknown code %ld!\n", code);
80 fprintf(stderr, "usage: %s <message-code>\n", __progname);
/haiku/src/tests/system/kernel/
H A Dport_multi_read_test.cpp28 int32 code; local
29 bytes = read_port(port, &code, buffer, sizeof(buffer));
30 printf("[%ld] read port result (code %lx): %s\n", find_thread(NULL),
31 code, strerror(bytes));
/haiku/src/add-ons/kernel/network/ppp/pppoe/
H A DDiscoveryPacket.h46 DiscoveryPacket(uint8 code, uint16 sessionID = 0x0000);
53 void SetCode(uint8 code) argument
54 { fCode = code; }
H A Dpppoe.cpp173 if (header.code == PADI) {
179 if (header.code == PADO || header.code == PADR || header.code == PADS || header.code == PADT)
184 const char *str = header.code == PADI ? "PADI" :
185 header.code == PADO ? "PADO" :
186 header.code == PADR ? "PADR" :
187 header.code == PADS ? "PADS" :
190 dprintf("%s from:%02x:%02x:%02x:%02x:%02x:%02x code
[all...]
/haiku/src/add-ons/kernel/network/protocols/icmp/
H A Dicmp.cpp45 uint8 code; member in struct:icmp_header
151 icmp_to_net_error(uint8 type, uint8 code) argument
155 switch (code) {
179 switch (code) {
196 net_error_to_icmp(net_error error, uint8& type, uint8& code) argument
202 code = ICMP_CODE_REDIRECT_HOST;
208 code = ICMP_CODE_NET_UNREACH;
212 code = ICMP_CODE_HOST_UNREACH;
216 code = ICMP_CODE_PROTOCOL_UNREACH;
220 code
521 icmp_error_received(net_error code, net_buffer* data) argument
[all...]
/haiku/headers/private/app/
H A DServerLink.h23 * Error checking rules: (for if you don't want to check every return code)
49 status_t StartMessage(int32 code, size_t minSize = 0);
70 status_t GetNextMessage(int32& code,
88 status_t FlushWithReply(int32& code);
130 ServerLink::StartMessage(int32 code, size_t minSize) argument
132 return fSender->StartMessage(code, minSize);
196 ServerLink::GetNextMessage(int32& code, bigtime_t timeout) argument
198 return fReceiver->GetNextMessage(code, timeout);
/haiku/headers/private/bluetooth/
H A DPortListener.h47 status_t Trigger(int32 code) argument
49 return write_port(fPort, code, NULL, 0);
53 status_t Trigger(int32 code, TYPE* buffer, size_t size) argument
58 return write_port(fPort, code, buffer, size);
139 int32 code; local
159 ssizeRead = read_port(*port, &code, (void*)buffer, ssizePort);
164 status = handler(buffer, code, ssizePort);
/haiku/src/preferences/keymap/
H A DKeyboardLayoutView.h75 uint32 code, bool abbreviated = false);
80 bool _FunctionKeyLabel(uint32 code, char* text,
87 bool _IsKeyPressed(uint32 code);
88 bool _KeyState(uint32 code) const;
89 void _SetKeyState(uint32 code, bool pressed);
90 Key* _KeyForCode(uint32 code);
91 void _InvalidateKey(uint32 code);

Completed in 140 milliseconds

1234567891011>>