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

  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_privsep.c 24 char *own_socket_path; member in struct:l2_packet_data
151 l2->own_socket_path = os_malloc(len);
152 if (l2->own_socket_path == NULL) {
156 os_snprintf(l2->own_socket_path, len, "%s/wpa_privsep-l2-%d-%d",
166 os_free(l2->own_socket_path);
167 l2->own_socket_path = NULL;
174 os_strlcpy(addr.sun_path, l2->own_socket_path, sizeof(addr.sun_path));
223 unlink(l2->own_socket_path);
224 os_free(l2->own_socket_path);
225 l2->own_socket_path = NULL
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_privsep.c 22 char *own_socket_path; member in struct:wpa_driver_privsep_data
532 if (drv->own_socket_path) {
533 unlink(drv->own_socket_path);
534 os_free(drv->own_socket_path);
602 drv->own_socket_path = os_malloc(len);
603 if (drv->own_socket_path == NULL) {
608 os_snprintf(drv->own_socket_path, len, "%s/wpa_privsep-%d-%d",
614 os_free(drv->own_socket_path);
615 drv->own_socket_path = NULL;
633 os_free(drv->own_socket_path);
    [all...]
driver_test.c 78 char *own_socket_path; member in struct:wpa_driver_test_data
278 if (strcmp(addr.sun_path, drv->own_socket_path) == 0)
388 if (os_strcmp(addr.sun_path, drv->own_socket_path) == 0)
1238 drv->own_socket_path = os_malloc(len);
1239 if (drv->own_socket_path) {
1240 snprintf(drv->own_socket_path, len,
1248 drv->own_socket_path = os_strdup(params->test_socket);
1250 if (drv->own_socket_path == NULL && drv->udp_port == 0) {
1272 os_strlcpy(addr_un.sun_path, drv->own_socket_path,
1280 if (drv->own_socket_path)
    [all...]

Completed in 49 milliseconds