Searched refs:code (Results 76 - 100 of 475) sorted by relevance

1234567891011>>

/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);
/haiku/src/add-ons/kernel/network/ppp/pppoe/
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/servers/app/
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...]
H A DTestServerLoopAdapter.h37 virtual void _DispatchMessage(int32 code,
/haiku/src/preferences/screen/
H A Dmultimon.cpp38 // retrieve value of setting "code"
40 GetSetting(BScreen *screen, uint16 code, uint32 *setting) argument
51 mode.h_display_start = code;
64 // set setting "code" to "value"
66 SetSetting(BScreen *screen, uint16 code, uint32 value) argument
77 mode.h_display_start = code;
85 // retrieve n-th supported value of setting "code"
87 GetNthSupportedSetting(BScreen *screen, uint16 code, int32 idx, argument
99 mode.h_display_start = code;
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteEventStream.cpp96 uint16 code = message.Code(); local
98 switch (code) {
131 switch (code) {
137 if (code != RP_MOUSE_MOVED)
144 if (code == RP_MOUSE_DOWN) {
150 if (code == RP_MOUSE_MOVED)
/haiku/headers/private/netservices/
H A DHttpRequest.h60 static bool IsInformationalStatusCode(int16 code);
61 static bool IsSuccessStatusCode(int16 code);
62 static bool IsRedirectionStatusCode(int16 code);
63 static bool IsClientErrorStatusCode(int16 code);
64 static bool IsServerErrorStatusCode(int16 code);
65 static int16 StatusCodeClass(int16 code);
/haiku/src/apps/remotedesktop/
H A DRemoteView.h36 virtual void MouseMoved(BPoint where, uint32 code,
47 void _SendMouseMessage(uint16 code,
49 void _SendKeyMessage(uint16 code,
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DPPPReportDefs.h17 // the code of receive_data() must have this value
33 // the interface is being destroyed (no code is needed)
61 int32 code; member in struct:ppp_report_packet
/haiku/src/system/boot/platform/atari_m68k/
H A Dkeyboard.cpp51 switch (key.code.ascii) {
/haiku/src/tests/apps/fake_app_server/
H A DAppServer.cpp181 int32 code; local
182 status_t err = pmsg.GetNextMessage(code);
188 switch (code) {
193 DispatchMessage(code, pmsg);
197 STRACE(("Server::MainLoop received unexpected code %ld\n",
198 code));
207 \param code ID of the message sent
212 AppServer::DispatchMessage(int32 code, BPrivate::PortLink &msg) argument
214 switch (code) {
340 AppServer::Broadcast(int32 code) argument
[all...]
/haiku/src/tests/servers/app/newerClipping/drawing/
H A DDrawView.cpp41 DrawView::MouseMoved(BPoint where, uint32 code, const BMessage* dragMessage) argument
/haiku/src/apps/cortex/NodeManager/
H A DNodeSyncThread.cpp9 * 1. Redistributions of source code must retain the above copyright
159 int32 code; local
162 &code,
174 if(code != M_TRIGGER) {
176 "! NodeSyncThread::sync(): unknown message code %" B_PRId32
177 "\n", code));
/haiku/src/kits/media/
H A DDecoderPlugin.cpp45 Decoder::Perform(perform_code code, void* _data) argument
/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);
H A DScreenshotCoordinate.h13 /*! A screenshot coordinate defines a screenshot to obtain. The `code` is
21 ScreenshotCoordinate(BString code, uint16 width, uint16 height);
H A DLanguageModel.cpp190 const char* code,
194 int32 index = _IndexOfBestMatchingSupportedLanguage(code, countryCode, scriptCode);
201 /*! The supplied `languageId` here is the ICU code with the components separated
208 const char* code,
218 if( 0 == _NullSafeStrCmp(code, suppLangCode)
236 const char* code,
243 int32 index = _IndexOfSupportedLanguage(code, countryCode, scriptCode);
251 if( 0 == _NullSafeStrCmp(code, fSupportedLanguages[i]->Code())
258 if (NULL != code) {
260 if(0 == _NullSafeStrCmp(code, fSupportedLanguage
189 _FindBestSupportedLanguage( const char* code, const char* countryCode, const char* scriptCode) const argument
207 _IndexOfSupportedLanguage( const char* code, const char* countryCode, const char* scriptCode) const argument
235 _IndexOfBestMatchingSupportedLanguage( const char* code, const char* countryCode, const char* scriptCode) const argument
[all...]
/haiku/src/system/boot/platform/next_m68k/
H A Dkeyboard.cpp49 switch (key.code.ascii) {
/haiku/src/servers/syslog_daemon/
H A DSyslogDaemon.cpp138 int32 code; local
141 ssize_t bytesRead = read_port(fPort, &code, &message, sizeof(buffer));
147 if (code == kQuitDaemon)
152 || code != SYSLOG_MESSAGE)
/haiku/src/apps/haikudepot/packagemodel/
H A DPackageCategory.h17 PackageCategory(const BString& code,
/haiku/src/apps/haikudepot/util/
H A DLanguageMenuUtils.h35 const BString& code,
/haiku/src/kits/interface/
H A DInterfaceDefs.cpp495 int32 code; local
496 if (link.FlushWithReply(code) == B_OK
497 && code == B_OK) {
513 int32 code; local
518 if (link.FlushWithReply(code) == B_OK
519 && code == B_OK)
1037 int32 code; local
1038 if (link.FlushWithReply(code) == B_OK && code == B_OK)
1111 int32 code; local
1137 int32 code; local
1154 int32 code; local
1190 int32 code; local
1267 int32 code; local
1533 int32 code; local
1592 int32 code; local
1631 int32 code; local
1659 int32 code; local
1709 int32 code; local
1733 int32 code; local
[all...]
H A DFont.cpp302 int32 code; local
303 if (link.FlushWithReply(code) != B_OK || code != B_OK)
345 int32 code; local
346 if (link.FlushWithReply(code) != B_OK
347 || code != B_OK) {
572 BFont::SetFamilyAndStyle(uint32 code) argument
581 style = code & 0xFFFF;
582 family = (code & 0xFFFF0000) >> 16;
718 int32 code; local
832 int32 code; local
916 int32 code; local
939 int32 code; local
1096 int32 code; local
1139 int32 code; local
1190 int32 code; local
[all...]
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.cpp61 switch (pkt.code) {
78 TRACE("%d", pkt.code);
83 switch (pkt.code) {
97 TRACE("%d", pkt.code);
102 switch (pkt.code) {
113 TRACE("%d", pkt.code);
391 if (pkt.code < 256)
392 SetBitTo(fNewState.keys[pkt.code / 8], pkt.code % 8,
412 KeyboardHandler::_KeyString(uint32 code, cha argument
[all...]
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex7 \newcommand{\code}[1]{{\tt #1}}
20 % begin/end a code block
77 The resources start at \code{kX86ResourcesOffset}.
114 \item{\code{tag1}:
115 Must be \code{kPEFFileMagic1}.}
116 \item{\code{tag2}:
117 Must be \code{kPPCResourceFileMagic}.}
122 The resources start at \code{kPPCResourcesOffset}.
140 \code{kELFMinResourceAlignment} and the alignments of the segments in the file.
178 first field of the resources header (\code{r
[all...]

Completed in 153 milliseconds

1234567891011>>