Searched refs:code (Results 151 - 175 of 477) sorted by relevance

1234567891011>>

/haiku/src/bin/debug/strace/
H A DMemoryReader.cpp102 int32 code; local
105 ssize_t bytesRead = read_port(fReplyPort, &code, &reply, sizeof(reply));
/haiku/src/preferences/locale/
H A DLanguageListView.h70 LanguageListItem* ItemForLanguageID(const char* code,
72 LanguageListItem* ItemForLanguageCode(const char* code,
/haiku/src/tests/servers/input/view_input_device/
H A DViewInputDevice.cpp94 int32 code; local
106 err = read_port(_Port, &code, buffer, length);
/haiku/headers/os/storage/
H A DPath.h64 virtual bool AllowsTypeCode(type_code code) const;
65 virtual status_t Unflatten(type_code code, const void* buffer,
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPLCP.h32 uint8 code; member in struct:ppp_lcp_packet
70 KPPPLCPExtension *LCPExtensionFor(uint8 code, int32 *start = NULL) const;
/haiku/src/add-ons/kernel/bluetooth/hci/
H A Dbluetooth.cpp64 status_t HciPacketHandler(void* data, int32 code, size_t size);
88 uint32 code = 0; local
90 Bluetooth::CodeHandler::SetDevice(&code, hid);
91 Bluetooth::CodeHandler::SetProtocol(&code, type);
93 return BluetoothRXPort->Trigger(code, data, count);
217 HciPacketHandler(void* data, int32 code, size_t size) argument
219 hci_id deviceId = Bluetooth::CodeHandler::Device(code);
227 return Assemble(bluetoothDevice, Bluetooth::CodeHandler::Protocol(code),
/haiku/headers/os/app/
H A DPropertyInfo.h70 virtual bool AllowsTypeCode(type_code code) const;
71 virtual status_t Unflatten(type_code code, const void* buffer,
/haiku/src/kits/media/
H A DEncoderPlugin.cpp33 Encoder::AddTrackInfo(uint32 code, const void* data, size_t size, uint32 flags) argument
104 Encoder::Perform(perform_code code, void* data) argument
/haiku/src/tests/kits/media/playsound/
H A Dplaywav.cpp26 int32 code; local
29 read_port(port, &code, buffer, portsize);
/haiku/src/tests/kits/media/playwav/
H A Dplaywav.cpp28 int32 code; local
30 read_port(port, &code, buffer, portsize);
/haiku/src/kits/app/
H A DLinkSender.cpp65 LinkSender::StartMessage(int32 code, size_t minSize) argument
95 header->code = code;
99 code, code, header->size, header->code, header->flags));
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) {
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPLCP.cpp177 //! Returns the LCP extension that can handle LCP packets of a given \a code.
179 KPPPLCP::LCPExtensionFor(uint8 code, int32 *start) const argument
193 if (current->Code() == code) {
258 switch (data.code) {
306 // Try to find LCP extensions that can handle this code.
309 KPPPLCPExtension *lcpExtension = LCPExtensionFor(data.code, &index);
310 for (; lcpExtension; lcpExtension = LCPExtensionFor(data.code, &(++index))) {
314 result = lcpExtension->Receive(packet, data.code);
/haiku/headers/os/media/
H A DParameterWeb.h99 virtual bool AllowsTypeCode(type_code code) const;
100 virtual status_t Unflatten(type_code code, const void* buffer,
169 virtual bool AllowsTypeCode(type_code code) const;
170 virtual status_t Unflatten(type_code code, const void* buffer,
248 virtual bool AllowsTypeCode(type_code code) const;
249 virtual status_t Unflatten(type_code code, const void* buffer,
321 virtual status_t Unflatten(type_code code, const void* buffer,
372 virtual status_t Unflatten(type_code code, const void* buffer,
410 virtual status_t Unflatten(type_code code, const void* buffer,
445 virtual status_t Unflatten(type_code code, cons
[all...]
/haiku/src/kits/storage/mime/
H A DTextSnifferAddon.cpp78 * The following code has been taken from version 4.17 of the BSD file tool,
90 * 1. Redistributions of source code must retain the above copyright
154 const char *code = NULL; local
179 * Then try to determine whether it's any character code we can
185 code = "ASCII";
189 code = "UTF-8 Unicode";
194 code = "Little-endian UTF-16 Unicode";
196 code = "Big-endian UTF-16 Unicode";
201 code = "ISO-8859";
205 code
[all...]
/haiku/src/apps/deskcalc/
H A DCalcView.cpp173 char code[8]; member in struct:CalcView::CalcKey
1223 // set code
1225 strlcpy(key->code, "\n", sizeof(key->code));
1227 strlcpy(key->code, p, sizeof(key->code));
1256 if (strcmp(fKeypad[key].code, "BS") == 0) {
1259 } else if (strcmp(fKeypad[key].code, "C") == 0) {
1262 } else if (strcmp(fKeypad[key].code, "acos") == 0
1263 || strcmp(fKeypad[key].code, "asi
[all...]
/haiku/src/kits/interface/
H A DPictureButton.cpp294 BPictureButton::MouseMoved(BPoint where, uint32 code, argument
298 if (code == B_EXITED_VIEW)
300 else if (code == B_ENTERED_VIEW)
303 BControl::MouseMoved(where, code, dragMessage);
415 BPictureButton::Perform(perform_code code, void* _data) argument
417 switch (code) {
471 return BControl::Perform(code, _data);
/haiku/src/add-ons/kernel/network/ppp/pap/
H A DProtocol.cpp196 if (data.code == PPP_CONFIGURE_REQUEST && Side() != PPP_PEER_SIDE)
199 if ((data.code == PPP_CONFIGURE_ACK || data.code == PPP_CONFIGURE_NAK)
211 // code values are the same as for LCP (but very reduced)
212 switch (data.code) {
463 request->code = PPP_CONFIGURE_REQUEST;
491 ack.code = PPP_CONFIGURE_ACK;
514 nak.code = PPP_CONFIGURE_NAK;
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A Dl2cap_command.cpp12 make_l2cap_command_reject(uint8& code, uint16 reason, uint16 mtu, uint16 scid, uint16 dcid)
31 code = L2CAP_COMMAND_REJECT_RSP;
39 make_l2cap_connection_req(uint8& code, uint16 psm, uint16 scid)
49 code = L2CAP_CONNECTION_REQ;
58 make_l2cap_connection_rsp(uint8& code, uint16 dcid, uint16 scid, uint16 result, uint16 status)
68 code = L2CAP_CONNECTION_RSP;
79 make_l2cap_configuration_req(uint8& code, uint16 dcid, uint16 flags,
138 code = L2CAP_CONFIGURATION_REQ;
147 make_l2cap_configuration_rsp(uint8& code, uint16 scid, uint16 flags,
158 code
[all...]
H A Dl2cap_lower.cpp Error!

 

There was an error!

/usr/local/opengrok/src/haiku/src/add-ons/kernel/network/protocols/l2cap/l2cap_lower.cpp (No such file or directory)

java.io.FileNotFoundException: /usr/local/opengrok/src/haiku/src/add-ons/kernel/network/protocols/l2cap/l2cap_lower.cpp (No such file or directory)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:195)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
at java.io.FileReader.<init>(FileReader.java:72)
at org.opensolaris.opengrok.search.Results.prettyPrint(Results.java:191)
at org.apache.jsp.search_jsp._jspService(search_jsp.java:680)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:71)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:477)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:395)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:492)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:165)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:1025)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:451)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1201)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:654)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:319)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:750)