Searched refs:code (Results 201 - 225 of 474) sorted by last modified time

1234567891011>>

/haiku/src/apps/deskbar/
H A DBarMenuBar.h64 virtual void MouseMoved(BPoint where, uint32 code,
/haiku/src/apps/haikudepot/model/
H A DUserUsageConditions.h17 to. Each set of user usage conditions has a code that uniquely identifies
31 void SetCode(const BString& code);
/haiku/src/kits/debug/
H A Ddebug_support.cpp98 int32 code; local
99 ssize_t bytesRead = read_port(context->reply_port, &code, reply,
/haiku/headers/os/game/
H A DDirectWindow.h105 virtual status_t Perform(perform_code code, void* arg);
131 virtual BMessage* ConvertToMessage(void* raw, int32 code);
/haiku/src/kits/storage/
H A DPath.cpp458 // Checks if type code is equal to B_REF_TYPE.
460 BPath::AllowsTypeCode(type_code code) const
462 return code == B_REF_TYPE;
469 BPath::Unflatten(type_code code, const void* buffer, ssize_t size) argument
474 if (!(code == B_REF_TYPE && buffer != NULL
508 \returns A status code.
/haiku/src/kits/app/
H A DRoster.cpp81 \return A status code.
123 \return A status code, \c B_OK on success oir other error codes specifying
314 \return A status code.
906 status_t code;
907 error = link.FlushWithReply(code);
911 return code;
1309 \return A status code, \c B_OK on success or another error code in case
1351 \return A status code, \c B_OK on success or another error code i
[all...]
H A DAppMisc.cpp44 - another error code
76 - another error code
93 - another error code
120 - another error code
156 - another error code
281 int32 code; local
282 if (link->FlushWithReply(code) != B_OK || code != B_OK) {
H A DApplication.cpp194 \return A status code.
919 int32 code; local
920 link.FlushWithReply(code);
1433 int32 code; local
1434 if (fServerLink->FlushWithReply(code) == B_OK
1435 && code == B_OK) {
/haiku/src/bin/debug/profile/
H A Dprofile.cpp894 int32 code; local
895 ssize_t messageSize = read_port(debuggerPort, &code, &message,
907 switch (code) {
/haiku/src/servers/app/
H A DProfileMessageSupport.h15 const char* string_for_message_code(uint32 code);
H A DMessageLooper.cpp89 \param code ID code of the message to post
92 MessageLooper::PostMessage(int32 code, bigtime_t timeout) argument
95 link.StartMessage(code);
134 MessageLooper::_DispatchMessage(int32 code, BPrivate::LinkReceiver &link) argument
145 int32 code; local
146 status_t status = receiver.GetNextMessage(code);
158 if (code == kMsgQuitLooper)
161 _DispatchMessage(code, receiver);
H A DMessageLooper.h25 status_t PostMessage(int32 code,
41 virtual void _DispatchMessage(int32 code,
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteMessage.cpp42 RemoteMessage::NextMessage(uint16& code) argument
56 status_t result = Read(code);
58 TRACE_ERROR("failed to read message code: %s\n", strerror(result));
76 fCode = code;
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js990 RemoteMessage.prototype.code = function()
1002 RemoteMessage.prototype.start = function(code)
1005 this.dataView.writeUint16(code);
1109 switch (remoteMessage.code()) {
1406 = remoteMessage.code() != RP_STROKE_ARC ? Math.PI / 2 : span;
1415 switch (remoteMessage.code()) {
1454 switch (remoteMessage.code()) {
1484 if (remoteMessage.code() == RP_FILL_ROUND_RECT_GRADIENT) {
1492 if (remoteMessage.code() == RP_STROKE_ROUND_RECT)
1497 if (remoteMessage.code()
[all...]
/haiku/src/system/libroot/os/arch/arm64/
H A Dsyscalls.inc5 #define _AARCH64_SYSCALL_ENCODE(name, code, nparams) \
10 svc #(((code) << 5) | (nparams)); \
/haiku/src/tests/kits/media/playwav/
H A Dplaywav.cpp28 int32 code; local
30 read_port(port, &code, buffer, portsize);
/haiku/src/kits/interface/
H A DSeparatorView.cpp421 BSeparatorView::Perform(perform_code code, void* data) argument
423 return BView::Perform(code, data);
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPStateMachine.cpp194 request.code = PPP_ECHO_REQUEST;
232 request.code = PPP_DISCARD_REQUEST;
1314 // receive unknown code
1317 uint8 code)
1329 SendCodeReject(packet, protocolNumber, code);
1334 // receive code/protocol reject (acceptable such as IPX reject)
1359 // receive code/protocol reject (catastrophic such as LCP reject)
1415 if (echo.code == PPP_ECHO_REPLY && echo.id != fEchoID) {
1427 if (echo.code == PPP_ECHO_REQUEST)
1584 // LCP received a code/protoco
1316 RUCEvent(net_buffer *packet, uint16 protocolNumber, uint8 code) argument
1873 SendCodeReject(net_buffer *packet, uint16 protocolNumber, uint8 code) argument
[all...]
H A DKPPPInterface.cpp608 report.code = StateMachine().fLastConnectionReportCode;
839 report.code = StateMachine().fLastConnectionReportCode;
1406 if (report.code == PPP_REPORT_UP_SUCCESSFUL) {
1409 } else if (report.code == PPP_REPORT_DOWN_SUCCESSFUL)
1939 - Any other value: Error code which was returned by the last failing handler.
2060 int32 code; local
2065 if (receive_data_with_timeout(&sender, &code, NULL, 0, info.delay) == B_OK) {
H A DKPPPConfigurePacket.cpp24 \param code The code value (e.g.: PPP_CONFIGURE_REQUEST) of this packet.
26 KPPPConfigurePacket::KPPPConfigurePacket(uint8 code) argument
27 : fCode(code),
43 if (!SetCode(header.code))
75 //! Sets the packet's code value (e.g.: PPP_CONFIGURE_REQUEST).
77 KPPPConfigurePacket::SetCode(uint8 code) argument
80 if (code < PPP_CONFIGURE_REQUEST || code > PPP_CONFIGURE_REJECT)
83 fCode = code;
[all...]
/haiku/src/add-ons/kernel/network/ppp/pppoe/
H A DPPPoEDevice.cpp339 header.code = 0x00;
405 || header.code != 0x0 || header.sessionID != SessionID()) {
574 dprintf("PPPoEDevice::Receive fail unknown pppoed code\n");
/haiku/src/servers/media/
H A Dmedia_server.cpp12 * * Redistributions of source code must retain the above copyright notice,
84 void _HandleMessage(int32 code, const void* data,
272 ServerApp::_HandleMessage(int32 code, const void* data, size_t size) argument
274 TRACE("ServerApp::HandleMessage %#" B_PRIx32 " enter\n", code);
275 switch (code) {
898 printf("media_server: received unknown message code %#08" B_PRIx32
899 "\n", code);
901 TRACE("ServerApp::HandleMessage %#" B_PRIx32 " leave\n", code);
912 int32 code; local
913 while ((size = read_port_etc(server->_ControlPort(), &code, dat
[all...]
/haiku/src/kits/media/
H A DMediaFormats.cpp382 type_code code;
385 || reply.GetInfo("formats", &code, &count) < B_OK)
/haiku/headers/os/interface/
H A DMenuBar.h80 virtual status_t Perform(perform_code code, void* data);
/haiku/src/preferences/keymap/
H A DKeyboardLayout.cpp344 KeyboardLayout::_AddAlternateKeyCode(Key* key, int32 modifier, int32 code) argument
356 TRACE(" add %ld (%g,%g)\n", key.code, key.frame.left, key.frame.top);
524 first = fKeys[fKeyCount - 1].code + 1;
537 _Error(state, "invalid key code specifier");
566 key.code = i;

Completed in 125 milliseconds

1234567891011>>