HomeSort by relevance Sort by last modified time
    Searched defs:need_more_input (Results 1 - 2 of 2) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_tls_common.c 380 * @need_more_input: Variable for returning whether more input data is needed
383 * for the full message (in which case, *need_more_input is also set to 1).
390 size_t *out_len, int *need_more_input)
392 *need_more_input = 0;
400 *need_more_input = 1;
436 int need_more_input; local
441 &msg_len, &need_more_input);
443 return need_more_input ? 1 : -1;
861 int need_more_input; local
865 &need_more_input);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 411 * @need_more_input: Variable for returning whether more input data is needed
414 * for the full message (in which case, *need_more_input is also set to 1).
421 int *need_more_input)
423 *need_more_input = 0;
430 *need_more_input = 1;
462 int need_more_input; local
467 msg = eap_peer_tls_data_reassemble(data, &buf, &need_more_input);
469 return need_more_input ? 1 : -1;
887 int need_more_input; local
889 msg = eap_peer_tls_data_reassemble(data, in_data, &need_more_input);
    [all...]

Completed in 53 milliseconds