HomeSort by relevance Sort by last modified time
    Searched refs:ERR_OK (Results 1 - 25 of 37) sorted by null

1 2

  /external/syslinux/core/lwip/src/core/
sys.c 59 if (err == ERR_OK) {
tcp.c 134 * @return ERR_OK if connection has been closed
162 return ERR_OK;
175 err = ERR_OK;
183 err = ERR_OK;
189 err = ERR_OK;
197 if (err == ERR_OK) {
204 if (err == ERR_OK) {
211 if (err == ERR_OK) {
218 err = ERR_OK;
223 if (pcb != NULL && err == ERR_OK) {
    [all...]
tcp_in.c 304 TCP_EVENT_RECV(pcb, pcb->refused_data, ERR_OK, err);
305 if (err == ERR_OK) {
337 err = ERR_OK;
362 TCP_EVENT_RECV(pcb, recv_data, ERR_OK, err);
368 if (err != ERR_OK) {
434 * @return ERR_OK if the segment was processed
507 if (rc != ERR_OK) {
513 return ERR_OK;
534 return ERR_OK;
544 return ERR_OK;
    [all...]
raw.c 135 * - ERR_OK. Successful. No error occured.
145 return ERR_OK;
165 return ERR_OK;
netif.c 85 * @return ERR_OK if the loopif is initialized
99 return ERR_OK;
185 if (init(netif) != ERR_OK) {
584 * @return ERR_OK if the packet has been sent
632 if ((err = pbuf_copy(r, p)) != ERR_OK) {
666 return ERR_OK;
726 if (ip_input(in, netif) != ERR_OK) {
dhcp.c 222 if (result != ERR_OK) {
280 if (result == ERR_OK) {
621 * - ERR_OK - No error
628 err_t result = ERR_OK;
688 if (result != ERR_OK) {
711 err_t result = ERR_OK;
735 if (result == ERR_OK) {
831 err_t result = ERR_OK;
837 if (result == ERR_OK) {
871 err_t result = ERR_OK;
    [all...]
udp.c 311 if (err == ERR_OK) {
373 * - ERR_OK. Successful. No error occured.
508 if (err != ERR_OK) {
694 * - ERR_OK. Successful. No error occured.
786 return ERR_OK;
812 if (err != ERR_OK) {
849 return ERR_OK;
855 return ERR_OK;
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
err.h 52 #define ERR_OK 0 /* No error, everything OK. */
tcp_impl.h 89 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
199 LWIP_EVENT_SENT, NULL, space, ERR_OK)
203 LWIP_EVENT_RECV, NULL, 0, ERR_OK)
207 LWIP_EVENT_POLL, NULL, 0, ERR_OK)
224 else (ret) = ERR_OK; \
239 (ret) = (pcb)->recv((pcb)->callback_arg,(pcb),NULL,ERR_OK);\
241 (ret) = ERR_OK; \
249 else (ret) = ERR_OK; \
256 else (ret) = ERR_OK; \
sys.h 49 #define sys_sem_new(s, c) ERR_OK
54 #define sys_mutex_new(mu) ERR_OK
58 #define sys_mbox_new(m, s) ERR_OK
132 * @return ERR_OK if successful, another err_t otherwise */
167 * @return ERR_OK if successful, another err_t otherwise */
  /external/syslinux/core/lwip/src/api/
tcpip.c 184 if (sys_mbox_trypost(&mbox, msg) != ERR_OK) {
188 return ERR_OK;
203 * @return ERR_OK if the function was called, another err_t if not
222 if (sys_mbox_trypost(&mbox, msg) != ERR_OK) {
227 return ERR_OK;
239 * @return ERR_MEM on memory error, ERR_OK otherwise
257 return ERR_OK;
268 * @return ERR_MEM on memory error, ERR_OK otherwise
285 return ERR_OK;
298 * @return ERR_OK if the function was called, another err_t if no
    [all...]
api_msg.c 99 if (pbuf_copy(q, p) != ERR_OK) {
119 if (sys_mbox_trypost(&conn->recvmbox, buf) != ERR_OK) {
195 if (sys_mbox_trypost(&conn->recvmbox, buf) != ERR_OK) {
236 return ERR_OK;
251 if (sys_mbox_trypost(&conn->recvmbox, p) != ERR_OK) {
262 return ERR_OK;
302 return ERR_OK;
336 return ERR_OK;
456 if (sys_mbox_trypost(&conn->acceptmbox, newconn) != ERR_OK) {
457 /* When returning != ERR_OK, the pcb is aborted in tcp_process()
    [all...]
api_lib.c 78 if (TCPIP_APIMSG(&msg) != ERR_OK) {
100 * @return ERR_OK if the connection was deleted
109 return ERR_OK;
120 return ERR_OK;
132 * ERR_OK if the information was retrieved
163 * @return ERR_OK if bound, any other err_t on failure
189 * @return ERR_OK if connected, return value of tcp_/udp_/raw_connect otherwise
237 * @return ERR_OK if the netconn was set to listen (UDP and RAW netconns
273 * @return ERR_OK if a new connection has been received or an error
323 /* don't set conn->last_err: it's only ERR_OK, anyway *
    [all...]
netifapi.c 56 msg->err = ERR_OK;
71 msg->err = ERR_OK;
85 msg->err = ERR_OK;
netbuf.c 146 * @return ERR_OK if data is referenced
164 return ERR_OK;
189 * @return ERR_OK if the information was retreived,
204 return ERR_OK;
netdb.c 98 if (err != ERR_OK) {
201 if (err != ERR_OK) {
297 if (err != ERR_OK) {
sockets.c 136 0, /* ERR_OK 0 No error, everything OK. */
337 if (err != ERR_OK) {
348 if (err != ERR_OK) {
429 if (err != ERR_OK) {
501 if (err != ERR_OK) {
538 if (err != ERR_OK) {
599 if (err != ERR_OK) {
784 return (err == ERR_OK ? (int)size : -1);
912 err = ERR_OK;
922 if (err == ERR_OK) {
    [all...]
  /external/syslinux/core/lwip/src/core/snmp/
asn1_dec.c 49 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) decode
67 return ERR_OK;
82 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) decode
105 return ERR_OK;
152 return ERR_OK;
172 return ERR_OK;
209 return ERR_OK;
233 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) decode
308 return ERR_OK;
328 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) decod
    [all...]
asn1_enc.c 178 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) encode
196 return ERR_OK;
210 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) encode
231 return ERR_OK;
250 return ERR_OK;
287 return ERR_OK;
303 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) encode
364 return ERR_OK;
379 * @return ERR_OK if successfull, ERR_ARG if we can't (or won't) encode
420 return ERR_OK;
    [all...]
msg_in.c 849 if ((err_ret != ERR_OK) ||
868 if ((err_ret != ERR_OK) || (msg_ps->invb.count == 0))
899 * - ERR_OK SNMP header is sane and accepted
914 if ((derr != ERR_OK) ||
924 if ((derr != ERR_OK) || (type != (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_INTEG)))
931 if (derr != ERR_OK)
946 if ((derr != ERR_OK) || (type != (SNMP_ASN1_UNIV | SNMP_ASN1_PRIMIT | SNMP_ASN1_OC_STR)))
953 if (derr != ERR_OK)
972 if (derr != ERR_OK)
982 derr = ERR_OK;
    [all...]
  /external/syslinux/core/lwip/src/netif/
ethernetif.c 114 * @return ERR_OK if the packet could be sent
150 return ERR_OK;
249 if (netif->input(p, netif)!=ERR_OK)
271 * @return ERR_OK if the loopif is initialized
315 return ERR_OK;
slipif.c 88 * @return always returns ERR_OK since the serial layer does not provide return values
128 return ERR_OK;
273 if (netif->input(p, netif) != ERR_OK) {
289 * @return ERR_OK if serial line could be opened,
341 return ERR_OK;
361 if (netif->input(p, netif) != ERR_OK) {
etharp.c 407 * @return ERR_OK if the packet was sent, any other err_t on failure
436 * - ERR_OK Succesfully updated ARP cache.
509 return ERR_OK;
542 * @return ERR_OK: entry removed
567 return ERR_OK;
    [all...]
  /external/syslinux/core/lwip/src/core/ipv4/
ip.c 238 * @return ERR_OK if the packet was processed (could return ERR_* if it wasn't
239 * processed, but currently always returns ERR_OK)
264 return ERR_OK;
291 return ERR_OK;
305 return ERR_OK;
414 return ERR_OK;
434 return ERR_OK;
445 return ERR_OK;
456 return ERR_OK;
474 return ERR_OK;
    [all...]
icmp.c 164 if (pbuf_copy(r, p) != ERR_OK) {
220 if (ret != ERR_OK) {

Completed in 354 milliseconds

1 2