HomeSort by relevance Sort by last modified time
    Searched refs:con_info (Results 1 - 4 of 4) sorted by null

  /external/libmicrohttpd/doc/examples/
largepost.c 82 struct connection_info_struct *con_info = coninfo_cls; local
85 con_info->answerstring = servererrorpage;
86 con_info->answercode = MHD_HTTP_INTERNAL_SERVER_ERROR;
91 if (!con_info->fp)
96 con_info->answerstring = fileexistspage;
97 con_info->answercode = MHD_HTTP_FORBIDDEN;
101 con_info->fp = fopen (filename, "ab");
102 if (!con_info->fp)
108 if (!fwrite (data, size, sizeof (char), con_info->fp))
112 con_info->answerstring = completepage
123 struct connection_info_struct *con_info = *con_cls; local
153 struct connection_info_struct *con_info; local
200 struct connection_info_struct *con_info = *con_cls; local
    [all...]
simplepost.c 71 struct connection_info_struct *con_info = coninfo_cls; local
83 con_info->answerstring = answerstring;
86 con_info->answerstring = NULL;
98 struct connection_info_struct *con_info = *con_cls; local
100 if (NULL == con_info)
103 if (con_info->connectiontype == POST)
105 MHD_destroy_post_processor (con_info->postprocessor);
106 if (con_info->answerstring)
107 free (con_info->answerstring);
110 free (con_info);
123 struct connection_info_struct *con_info; local
159 struct connection_info_struct *con_info = *con_cls; local
    [all...]
  /system/bt/stack/l2cap/
l2c_main.cc 261 tL2C_CONN_INFO con_info; local
375 STREAM_TO_UINT16(con_info.psm, p);
377 tL2C_RCB* p_rcb = l2cu_find_rcb_by_psm(con_info.psm);
380 con_info.psm);
387 con_info.psm);
402 l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_REQ, &con_info);
409 STREAM_TO_UINT16(con_info.remote_cid, p);
411 STREAM_TO_UINT16(con_info.l2cap_result, p);
412 STREAM_TO_UINT16(con_info.l2cap_status, p);
417 lcid, con_info.remote_cid)
    [all...]
l2c_ble.cc 590 tL2C_CONN_INFO con_info; local
663 STREAM_TO_UINT16(con_info.psm, p);
685 p_rcb = l2cu_find_ble_rcb_by_psm(con_info.psm);
688 con_info.psm);
695 con_info.psm);
731 l2c_csm_execute(p_ccb, L2CEVT_L2CAP_CONNECT_REQ, &con_info);
750 STREAM_TO_UINT16(con_info.l2cap_result, p);
751 con_info.remote_cid = p_ccb->remote_cid;
758 "con_info.l2cap_result = %d",
761 con_info.l2cap_result)
    [all...]

Completed in 108 milliseconds