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

  /frameworks/opt/net/wifi/service/lib/
wifi_hal_stub.cpp 389 int init_wifi_stub_hal_func_table(wifi_hal_fn *hal_fn) {
390 if (hal_fn == NULL) {
393 hal_fn->wifi_initialize = wifi_initialize_stub;
394 hal_fn->wifi_cleanup = wifi_cleanup_stub;
395 hal_fn->wifi_event_loop = wifi_event_loop_stub;
396 hal_fn->wifi_get_error_info = wifi_get_error_info_stub;
397 hal_fn->wifi_get_supported_feature_set = wifi_get_supported_feature_set_stub;
398 hal_fn->wifi_get_concurrency_matrix = wifi_get_concurrency_matrix_stub;
399 hal_fn->wifi_set_scanning_mac_oui = wifi_set_scanning_mac_oui_stub;
400 hal_fn->wifi_get_supported_channels = wifi_get_supported_channels_stub
    [all...]
  /packages/apps/Test/connectivity/sl4n/facades/wifi/
wifi_facade.h 39 wifi_hal_fn hal_fn; member in class:WifiFacade
wifi_facade.cpp 54 if (init_wifi_stub_hal_func_table(&hal_fn) != 0) {
60 wifi_error res = init_wifi_vendor_hal_func_table(&hal_fn);
72 res = hal_fn.wifi_initialize(&wifi_hal_handle);
81 int result = hal_fn.wifi_get_ifaces(wifi_hal_handle, &num_ifaces,
107 int result = hal_fn.wifi_get_iface_name(wifi_iface_handles[i], buf,
149 int result = hal_fn.wifi_get_supported_feature_set(
  /frameworks/opt/net/wifi/service/jni/
com_android_server_wifi_nan_WifiNanNative.cpp 42 extern wifi_hal_fn hal_fn;
236 return hal_fn.wifi_nan_register_handler(handle, handlers);
260 return hal_fn.wifi_nan_enable_request(transaction_id, handle, &msg);
273 return hal_fn.wifi_nan_get_capabilities(transaction_id, handle);
286 return hal_fn.wifi_nan_disable_request(transaction_id, handle);
354 return hal_fn.wifi_nan_publish_request(transaction_id, handle, &msg);
422 return hal_fn.wifi_nan_subscribe_request(transaction_id, handle, &msg);
457 return hal_fn.wifi_nan_transmit_followup_request(transaction_id, handle, &msg);
475 return hal_fn.wifi_nan_publish_cancel_request(transaction_id, handle, &msg);
493 return hal_fn.wifi_nan_subscribe_cancel_request(transaction_id, handle, &msg)
    [all...]
com_android_server_wifi_WifiNative.cpp 54 wifi_hal_fn hal_fn; member in namespace:android
301 if(init_wifi_stub_hal_func_table(&hal_fn) != 0 ) {
306 wifi_error res = init_wifi_vendor_hal_func_table(&hal_fn);
317 res = hal_fn.wifi_initialize(&halHandle);
351 hal_fn.wifi_cleanup(halHandle, android_net_wifi_hal_cleaned_up_handler);
360 hal_fn.wifi_event_loop(halHandle);
371 int result = hal_fn.wifi_get_ifaces(halHandle, &n, &ifaceHandles);
416 int result = hal_fn.wifi_get_iface_name(handle, buf, sizeof(buf));
526 return hal_fn.wifi_start_gscan(id, handle, params, handler) == WIFI_SUCCESS;
535 return hal_fn.wifi_stop_gscan(id, handle) == WIFI_SUCCESS
    [all...]
wifi_hal_stub.h 27 int init_wifi_stub_hal_func_table(wifi_hal_fn *hal_fn);
  /frameworks/opt/net/wifi/tests/wifitests/jni/
wifi_hal_mock.cpp 45 extern wifi_hal_fn hal_fn;
188 return init_wifi_hal_func_table_mock(&hal_fn);
wifi_nan_hal_mock.cpp 45 extern wifi_hal_fn hal_fn;
579 return init_wifi_nan_hal_func_table_mock(&hal_fn);

Completed in 381 milliseconds