/kernel/linux/linux-5.10/tools/testing/selftests/tpm2/ |
H A D | tpm2_tests.py | 14 def setUp(self): 15 self.client = tpm2.Client() 16 self.root_key = self.client.create_root_key() 18 def tearDown(self): 19 self.client.flush_context(self.root_key) 20 self.client.close() 22 def test_seal_with_auth(self): 26 blob = self [all...] |
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | abs.py | 44 def _get_suite_result(self, test_result, create=False): 48 def _get_test_result(self, test_result, create=False): 51 def __started__(self, lifecycle, result): 53 self._handle_test_suites_start(result) 55 self._handle_testsuite_start(result) 57 self._handle_case_start(result) 59 def __ended__(self, lifecycle, test_result, **kwargs): 61 self._handle_testsuite_end(test_result, kwargs) 63 self._handle_test_suites_end(test_result, kwargs) 65 self [all...] |
/third_party/python/Lib/test/ |
H A D | test_pty.py | 82 def setUp(self): 83 old_alarm = signal.signal(signal.SIGALRM, self.handle_sig) 84 self.addCleanup(signal.signal, signal.SIGALRM, old_alarm) 86 old_sighup = signal.signal(signal.SIGHUP, self.handle_sighup) 87 self.addCleanup(signal.signal, signal.SIGHUP, old_sighup) 91 self.addCleanup(signal.alarm, 0) 95 self.stdin_dim = None 98 self.stdin_dim = tty.tcgetwinsize(pty.STDIN_FILENO) 99 self.addCleanup(tty.tcsetwinsize, pty.STDIN_FILENO, 100 self [all...] |
H A D | test_sys_setprofile.py | 9 def setUp(self): 12 def tearDown(self): 15 def test_empty(self): 16 self.assertIsNone(sys.getprofile()) 18 def test_setget(self): 23 self.assertIs(sys.getprofile(), fn) 26 def __init__(self): 27 self.frames = [] 28 self.events = [] 30 def callback(self, fram [all...] |
H A D | test_imghdr.py | 30 def tell(self): 33 def seek(self, *args, **kwargs): 43 def tearDown(self): 46 def test_data(self): 49 self.assertEqual(imghdr.what(filename), expected) 51 self.assertEqual(imghdr.what(stream), expected) 54 self.assertEqual(imghdr.what(None, data), expected) 55 self.assertEqual(imghdr.what(None, bytearray(data)), expected) 57 def test_pathlike_filename(self): 59 with self [all...] |
H A D | test_dynamic.py | 14 def configure_func(self, func, *args): 29 def test_globals_shadow_builtins(self): 33 self.configure_func(foo) 35 self.assertEqual(foo(), 3) 37 self.assertEqual(foo(), 7) 39 def test_modify_builtins(self): 43 self.configure_func(foo) 45 self.assertEqual(foo(), 3) 47 self.assertEqual(foo(), 7) 49 def test_modify_builtins_while_generator_active(self) [all...] |
H A D | test_graphlib.py | 8 def _test_graph(self, graph, expected): 18 self.assertEqual(list(static_order_with_groups(ts)), list(expected)) 27 self.assertEqual(set(group), tsgroup) 29 def _assert_cycle(self, graph, cycle): 37 self.assertIn(" ".join(map(str, cycle)), " ".join(map(str, seq * 2))) 41 def test_simple_cases(self): 42 self._test_graph( 47 self._test_graph({1: {}}, [(1,)]) 49 self._test_graph( 53 self [all...] |
/third_party/python/Modules/_sqlite/ |
H A D | cursor.c | 37 #define clinic_state() (pysqlite_get_state_by_type(Py_TYPE(self))) 89 pysqlite_cursor_init_impl(pysqlite_Cursor *self, in pysqlite_cursor_init_impl() argument 93 if (!check_cursor_locked(self)) { in pysqlite_cursor_init_impl() 98 Py_XSETREF(self->connection, connection); in pysqlite_cursor_init_impl() 99 Py_CLEAR(self->statement); in pysqlite_cursor_init_impl() 100 Py_CLEAR(self->row_cast_map); in pysqlite_cursor_init_impl() 103 Py_XSETREF(self->description, Py_None); in pysqlite_cursor_init_impl() 106 Py_XSETREF(self->lastrowid, Py_None); in pysqlite_cursor_init_impl() 108 self->arraysize = 1; in pysqlite_cursor_init_impl() 109 self in pysqlite_cursor_init_impl() 129 stmt_reset(pysqlite_Statement *self) stmt_reset() argument 147 cursor_traverse(pysqlite_Cursor *self, visitproc visit, void *arg) cursor_traverse() argument 160 cursor_clear(pysqlite_Cursor *self) cursor_clear() argument 177 cursor_dealloc(pysqlite_Cursor *self) cursor_dealloc() argument 214 pysqlite_build_row_cast_map(pysqlite_Cursor* self) pysqlite_build_row_cast_map() argument 294 _pysqlite_build_column_name(pysqlite_Cursor *self, const char *colname) _pysqlite_build_column_name() argument 323 _pysqlite_fetch_one_row(pysqlite_Cursor* self) _pysqlite_fetch_one_row() argument 480 begin_transaction(pysqlite_Connection *self) begin_transaction() argument 509 get_statement_from_cache(pysqlite_Cursor *self, PyObject *operation) get_statement_from_cache() argument 530 bind_param(pysqlite_state *state, pysqlite_Statement *self, int pos, PyObject *parameter) bind_param() argument 634 bind_parameters(pysqlite_state *state, pysqlite_Statement *self, PyObject *parameters) bind_parameters() argument 774 stmt_mark_dirty(pysqlite_Statement *self) stmt_mark_dirty() argument 780 _pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject* operation, PyObject* second_argument) _pysqlite_query_execute() argument 1001 pysqlite_cursor_execute_impl(pysqlite_Cursor *self, PyObject *sql, PyObject *parameters) pysqlite_cursor_execute_impl() argument 1019 pysqlite_cursor_executemany_impl(pysqlite_Cursor *self, PyObject *sql, PyObject *seq_of_parameters) pysqlite_cursor_executemany_impl() argument 1036 pysqlite_cursor_executescript_impl(pysqlite_Cursor *self, const char *sql_script) pysqlite_cursor_executescript_impl() argument 1102 pysqlite_cursor_iternext(pysqlite_Cursor *self) pysqlite_cursor_iternext() argument 1159 pysqlite_cursor_fetchone_impl(pysqlite_Cursor *self) pysqlite_cursor_fetchone_impl() argument 1182 pysqlite_cursor_fetchmany_impl(pysqlite_Cursor *self, int maxrows) pysqlite_cursor_fetchmany_impl() argument 1221 pysqlite_cursor_fetchall_impl(pysqlite_Cursor *self) pysqlite_cursor_fetchall_impl() argument 1258 pysqlite_cursor_setinputsizes(pysqlite_Cursor *self, PyObject *sizes) pysqlite_cursor_setinputsizes() argument 1275 pysqlite_cursor_setoutputsize_impl(pysqlite_Cursor *self, PyObject *size, PyObject *column) pysqlite_cursor_setoutputsize_impl() argument 1289 pysqlite_cursor_close_impl(pysqlite_Cursor *self) pysqlite_cursor_close_impl() argument [all...] |
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
H A D | oh_yara_parser.py | 31 def __init__(self): 32 self.state_machine = StateRecorder() 33 self.suites_name = "" 34 self.vul_items = None 35 self.listeners = [] 37 def get_listeners(self): 38 return self.listeners 40 def __process__(self, lines): 41 self.parse(lines) 43 def __done__(self) [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | _tokenizer.py | 20 self, 26 self.span = span 27 self.message = message 28 self.source = source 32 def __str__(self) -> str: 33 marker = " " * self.span[0] + "~" * (self.span[1] - self.span[0]) + "^" 34 return "\n ".join([self.message, self [all...] |
/third_party/skia/infra/bots/ |
H A D | utils.py | 28 def __init__(self): 29 self._start = None 31 def __enter__(self): 32 self._start = datetime.datetime.utcnow() 33 print('Task started at %s GMT' % str(self._start)) 35 def __exit__(self, t, v, tb): 37 duration = (finish-self._start).total_seconds() 43 def __init__(self): 44 self._orig_dir = None 45 self [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/st/cw1200/ |
H A D | cw1200_sdio.c | 60 static int cw1200_sdio_memcpy_fromio(struct hwbus_priv *self, in cw1200_sdio_memcpy_fromio() argument 64 return sdio_memcpy_fromio(self->func, dst, addr, count); in cw1200_sdio_memcpy_fromio() 67 static int cw1200_sdio_memcpy_toio(struct hwbus_priv *self, in cw1200_sdio_memcpy_toio() argument 71 return sdio_memcpy_toio(self->func, addr, (void *)src, count); in cw1200_sdio_memcpy_toio() 74 static void cw1200_sdio_lock(struct hwbus_priv *self) in cw1200_sdio_lock() argument 76 sdio_claim_host(self->func); in cw1200_sdio_lock() 79 static void cw1200_sdio_unlock(struct hwbus_priv *self) in cw1200_sdio_unlock() argument 81 sdio_release_host(self->func); in cw1200_sdio_unlock() 86 struct hwbus_priv *self = sdio_get_drvdata(func); in cw1200_sdio_irq_handler() local 89 if (self in cw1200_sdio_irq_handler() 100 struct hwbus_priv *self = dev_id; cw1200_gpio_irq() local 112 cw1200_request_irq(struct hwbus_priv *self) cw1200_request_irq() argument 149 cw1200_sdio_irq_subscribe(struct hwbus_priv *self) cw1200_sdio_irq_subscribe() argument 164 cw1200_sdio_irq_unsubscribe(struct hwbus_priv *self) cw1200_sdio_irq_unsubscribe() argument 241 cw1200_sdio_align_size(struct hwbus_priv *self, size_t size) cw1200_sdio_align_size() argument 251 cw1200_sdio_pm(struct hwbus_priv *self, bool suspend) cw1200_sdio_pm() argument 273 struct hwbus_priv *self; cw1200_sdio_probe() local 322 struct hwbus_priv *self = sdio_get_drvdata(func); cw1200_sdio_disconnect() local 343 struct hwbus_priv *self = sdio_get_drvdata(func); cw1200_sdio_suspend() local [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/st/cw1200/ |
H A D | cw1200_sdio.c | 60 static int cw1200_sdio_memcpy_fromio(struct hwbus_priv *self, in cw1200_sdio_memcpy_fromio() argument 64 return sdio_memcpy_fromio(self->func, dst, addr, count); in cw1200_sdio_memcpy_fromio() 67 static int cw1200_sdio_memcpy_toio(struct hwbus_priv *self, in cw1200_sdio_memcpy_toio() argument 71 return sdio_memcpy_toio(self->func, addr, (void *)src, count); in cw1200_sdio_memcpy_toio() 74 static void cw1200_sdio_lock(struct hwbus_priv *self) in cw1200_sdio_lock() argument 76 sdio_claim_host(self->func); in cw1200_sdio_lock() 79 static void cw1200_sdio_unlock(struct hwbus_priv *self) in cw1200_sdio_unlock() argument 81 sdio_release_host(self->func); in cw1200_sdio_unlock() 86 struct hwbus_priv *self = sdio_get_drvdata(func); in cw1200_sdio_irq_handler() local 89 if (self in cw1200_sdio_irq_handler() 100 struct hwbus_priv *self = dev_id; cw1200_gpio_irq() local 112 cw1200_request_irq(struct hwbus_priv *self) cw1200_request_irq() argument 149 cw1200_sdio_irq_subscribe(struct hwbus_priv *self) cw1200_sdio_irq_subscribe() argument 164 cw1200_sdio_irq_unsubscribe(struct hwbus_priv *self) cw1200_sdio_irq_unsubscribe() argument 241 cw1200_sdio_align_size(struct hwbus_priv *self, size_t size) cw1200_sdio_align_size() argument 251 cw1200_sdio_pm(struct hwbus_priv *self, bool suspend) cw1200_sdio_pm() argument 273 struct hwbus_priv *self; cw1200_sdio_probe() local 322 struct hwbus_priv *self = sdio_get_drvdata(func); cw1200_sdio_disconnect() local 343 struct hwbus_priv *self = sdio_get_drvdata(func); cw1200_sdio_suspend() local [all...] |
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_configdialog.py | 55 def test_deactivate_current_config(self): 58 def activate_config_changes(self): 64 def test_click_ok(self): 73 def test_click_apply(self): 85 def test_click_cancel(self): 90 self.assertEqual(changes['main'], {}) 91 self.assertEqual(d.destroy.called, 1) 94 def test_click_help(self): 100 self.assertEqual(title, 'Help for IDLE preferences') 101 self [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/iommu/ |
H A D | iommufd_fail_nth.c | 94 snprintf(buf, sizeof(buf), "/proc/self/task/%u/fail-nth", getpid()); in fail_nth_first() 175 FIXTURE_DATA(fixture_name) *self, \ 188 ASSERT_EQ(0, test_nth_##name(_metadata, self, variant, \ 191 fixture_name##_teardown(_metadata, self, variant); \ 192 fixture_name##_setup(_metadata, self, variant); \ 193 test_result = test_nth_##name(_metadata, self, \ 200 FIXTURE_DATA(fixture_name) __attribute__((unused)) *self, \ 213 self->fd = -1; in FIXTURE_SETUP() 214 self->access_id = 0; in FIXTURE_SETUP() 221 if (self in FIXTURE_TEARDOWN() [all...] |
/third_party/googletest/googletest/test/ |
H A D | googletest-color-test.py | 68 def testNoEnvVarNoFlag(self): 72 self.assert_(not UsesColor('dumb', None, None)) 73 self.assert_(not UsesColor('emacs', None, None)) 74 self.assert_(not UsesColor('xterm-mono', None, None)) 75 self.assert_(not UsesColor('unknown', None, None)) 76 self.assert_(not UsesColor(None, None, None)) 77 self.assert_(UsesColor('linux', None, None)) 78 self.assert_(UsesColor('cygwin', None, None)) 79 self.assert_(UsesColor('xterm', None, None)) 80 self [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | exceptions.py | 18 def __init__(self, message=None): 21 Exception.__init__(self, message) 24 def message(self): 25 if self.args: 26 message = self.args[0] 30 def __unicode__(self): 31 return self.message or u'' 33 def __init__(self, message=None): 34 Exception.__init__(self, message) 37 def message(self) [all...] |
/third_party/python/Lib/importlib/resources/ |
H A D | readers.py | 16 def __init__(self, loader): 17 self.path = pathlib.Path(loader.path).parent 19 def resource_path(self, resource): 25 return str(self.path.joinpath(resource)) 27 def files(self): 28 return self.path 32 def __init__(self, loader, module): 34 self.prefix = loader.prefix.replace('\\', '/') + name + '/' 35 self.archive = loader.archive 37 def open_resource(self, resourc [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | service_reflection_test.py | 50 def testService(self): 52 def CallMethod(self, method, controller, request, response, callback): 53 self.method = method 54 self.controller = controller 55 self.request = request 59 def SetFailed(self, msg): 60 self.failure_message = msg 62 self.callback_response = None 67 self.callback_response = None 70 self [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/p2p/ |
H A D | p2p_stop_find.py | 51 def __init__(self,interface_name,wpas_dbus_interface,timeout): 53 self.interface_name = interface_name 54 self.wpas_dbus_interface = wpas_dbus_interface 55 self.timeout = timeout 58 threading.Thread.__init__(self) 59 self.daemon = True 62 self.wpas_dbus_opath = "/" + \ 63 self.wpas_dbus_interface.replace(".","/") 64 self.wpas_wpas_dbus_interfaces_opath = self [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/p2p/ |
H A D | p2p_stop_find.py | 51 def __init__(self,interface_name,wpas_dbus_interface,timeout): 53 self.interface_name = interface_name 54 self.wpas_dbus_interface = wpas_dbus_interface 55 self.timeout = timeout 58 threading.Thread.__init__(self) 59 self.daemon = True 62 self.wpas_dbus_opath = "/" + \ 63 self.wpas_dbus_interface.replace(".","/") 64 self.wpas_wpas_dbus_interfaces_opath = self [all...] |
/test/testfwk/developer_test/src/core/driver/ |
H A D | drivers.py | 70 def __init__(self): 71 self.output = "" 73 def __read__(self, output): 74 self.output = "%s%s" % (self.output, output) 76 def __error__(self, message): 79 def __done__(self, result_code="", message=""): 84 def __init__(self): 85 self.output = "" 86 self [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/aquantia/atlantic/hw_atl/ |
H A D | hw_atl_utils_fw2x.c | 85 static int aq_fw2x_set_link_speed(struct aq_hw_s *self, u32 speed); 86 static int aq_fw2x_set_state(struct aq_hw_s *self, 89 static u32 aq_fw2x_mbox_get(struct aq_hw_s *self); 90 static u32 aq_fw2x_rpc_get(struct aq_hw_s *self); 91 static int aq_fw2x_settings_get(struct aq_hw_s *self, u32 *addr); 92 static u32 aq_fw2x_state_get(struct aq_hw_s *self); 93 static u32 aq_fw2x_state2_get(struct aq_hw_s *self); 95 static int aq_fw2x_init(struct aq_hw_s *self) in aq_fw2x_init() argument 101 self, self in aq_fw2x_init() 115 aq_fw2x_deinit(struct aq_hw_s *self) aq_fw2x_deinit() argument 179 aq_fw2x_set_link_speed(struct aq_hw_s *self, u32 speed) aq_fw2x_set_link_speed() argument 188 aq_fw2x_upd_flow_control_bits(struct aq_hw_s *self, u32 *mpi_state, u32 fc) aq_fw2x_upd_flow_control_bits() argument 210 aq_fw2x_upd_eee_rate_bits(struct aq_hw_s *self, u32 *mpi_opts, u32 eee_speeds) aq_fw2x_upd_eee_rate_bits() argument 221 aq_fw2x_set_state(struct aq_hw_s *self, enum hal_atl_utils_fw_state_e state) aq_fw2x_set_state() argument 247 aq_fw2x_update_link_status(struct aq_hw_s *self) aq_fw2x_update_link_status() argument 279 aq_fw2x_get_mac_permanent(struct aq_hw_s *self, u8 *mac) aq_fw2x_get_mac_permanent() argument 301 aq_fw2x_update_stats(struct aq_hw_s *self) aq_fw2x_update_stats() argument 324 aq_fw2x_get_phy_temp(struct aq_hw_s *self, int *temp) aq_fw2x_get_phy_temp() argument 358 aq_fw2x_set_wol(struct aq_hw_s *self, u8 *mac) aq_fw2x_set_wol() argument 403 aq_fw2x_set_power(struct aq_hw_s *self, unsigned int power_state, u8 *mac) aq_fw2x_set_power() argument 414 aq_fw2x_send_fw_request(struct aq_hw_s *self, const struct hw_fw_request_iface *fw_req, size_t size) aq_fw2x_send_fw_request() argument 447 aq_fw3x_enable_ptp(struct aq_hw_s *self, int enable) aq_fw3x_enable_ptp() argument 461 aq_fw3x_adjust_ptp(struct aq_hw_s *self, uint64_t adj) aq_fw3x_adjust_ptp() argument 469 aq_fw2x_led_control(struct aq_hw_s *self, u32 mode) aq_fw2x_led_control() argument 479 aq_fw2x_set_eee_rate(struct aq_hw_s *self, u32 speed) aq_fw2x_set_eee_rate() argument 490 aq_fw2x_get_eee_rate(struct aq_hw_s *self, u32 *rate, u32 *supported_rates) aq_fw2x_get_eee_rate() argument 514 aq_fw2x_renegotiate(struct aq_hw_s *self) aq_fw2x_renegotiate() argument 525 aq_fw2x_set_flow_control(struct aq_hw_s *self) aq_fw2x_set_flow_control() argument 537 aq_fw2x_get_flow_control(struct aq_hw_s *self, u32 *fcmode) aq_fw2x_get_flow_control() argument 551 aq_fw2x_set_phyloopback(struct aq_hw_s *self, u32 mode, bool enable) aq_fw2x_set_phyloopback() argument 579 aq_fw2x_mbox_get(struct aq_hw_s *self) aq_fw2x_mbox_get() argument 584 aq_fw2x_rpc_get(struct aq_hw_s *self) aq_fw2x_rpc_get() argument 589 aq_fw2x_settings_get(struct aq_hw_s *self, u32 *addr) aq_fw2x_settings_get() argument 602 aq_fw2x_state_get(struct aq_hw_s *self) aq_fw2x_state_get() argument 607 aq_fw2x_state2_get(struct aq_hw_s *self) aq_fw2x_state2_get() argument 612 aq_fw2x_set_downshift(struct aq_hw_s *self, u32 counter) aq_fw2x_set_downshift() argument 633 aq_fw2x_set_media_detect(struct aq_hw_s *self, bool on) aq_fw2x_set_media_detect() argument 647 aq_fw2x_get_link_capabilities(struct aq_hw_s *self) aq_fw2x_get_link_capabilities() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/aquantia/atlantic/hw_atl/ |
H A D | hw_atl_utils_fw2x.c | 85 static int aq_fw2x_set_link_speed(struct aq_hw_s *self, u32 speed); 86 static int aq_fw2x_set_state(struct aq_hw_s *self, 89 static u32 aq_fw2x_mbox_get(struct aq_hw_s *self); 90 static u32 aq_fw2x_rpc_get(struct aq_hw_s *self); 91 static int aq_fw2x_settings_get(struct aq_hw_s *self, u32 *addr); 92 static u32 aq_fw2x_state_get(struct aq_hw_s *self); 93 static u32 aq_fw2x_state2_get(struct aq_hw_s *self); 95 static int aq_fw2x_init(struct aq_hw_s *self) in aq_fw2x_init() argument 101 self, self in aq_fw2x_init() 115 aq_fw2x_deinit(struct aq_hw_s *self) aq_fw2x_deinit() argument 179 aq_fw2x_set_link_speed(struct aq_hw_s *self, u32 speed) aq_fw2x_set_link_speed() argument 188 aq_fw2x_upd_flow_control_bits(struct aq_hw_s *self, u32 *mpi_state, u32 fc) aq_fw2x_upd_flow_control_bits() argument 210 aq_fw2x_upd_eee_rate_bits(struct aq_hw_s *self, u32 *mpi_opts, u32 eee_speeds) aq_fw2x_upd_eee_rate_bits() argument 221 aq_fw2x_set_state(struct aq_hw_s *self, enum hal_atl_utils_fw_state_e state) aq_fw2x_set_state() argument 247 aq_fw2x_update_link_status(struct aq_hw_s *self) aq_fw2x_update_link_status() argument 279 aq_fw2x_get_mac_permanent(struct aq_hw_s *self, u8 *mac) aq_fw2x_get_mac_permanent() argument 301 aq_fw2x_update_stats(struct aq_hw_s *self) aq_fw2x_update_stats() argument 324 aq_fw2x_get_phy_temp(struct aq_hw_s *self, int *temp) aq_fw2x_get_phy_temp() argument 358 aq_fw2x_set_wol(struct aq_hw_s *self, const u8 *mac) aq_fw2x_set_wol() argument 403 aq_fw2x_set_power(struct aq_hw_s *self, unsigned int power_state, const u8 *mac) aq_fw2x_set_power() argument 414 aq_fw2x_send_fw_request(struct aq_hw_s *self, const struct hw_fw_request_iface *fw_req, size_t size) aq_fw2x_send_fw_request() argument 447 aq_fw3x_enable_ptp(struct aq_hw_s *self, int enable) aq_fw3x_enable_ptp() argument 461 aq_fw3x_adjust_ptp(struct aq_hw_s *self, uint64_t adj) aq_fw3x_adjust_ptp() argument 469 aq_fw2x_led_control(struct aq_hw_s *self, u32 mode) aq_fw2x_led_control() argument 479 aq_fw2x_set_eee_rate(struct aq_hw_s *self, u32 speed) aq_fw2x_set_eee_rate() argument 490 aq_fw2x_get_eee_rate(struct aq_hw_s *self, u32 *rate, u32 *supported_rates) aq_fw2x_get_eee_rate() argument 514 aq_fw2x_renegotiate(struct aq_hw_s *self) aq_fw2x_renegotiate() argument 525 aq_fw2x_set_flow_control(struct aq_hw_s *self) aq_fw2x_set_flow_control() argument 537 aq_fw2x_get_flow_control(struct aq_hw_s *self, u32 *fcmode) aq_fw2x_get_flow_control() argument 551 aq_fw2x_set_phyloopback(struct aq_hw_s *self, u32 mode, bool enable) aq_fw2x_set_phyloopback() argument 579 aq_fw2x_mbox_get(struct aq_hw_s *self) aq_fw2x_mbox_get() argument 584 aq_fw2x_rpc_get(struct aq_hw_s *self) aq_fw2x_rpc_get() argument 589 aq_fw2x_settings_get(struct aq_hw_s *self, u32 *addr) aq_fw2x_settings_get() argument 602 aq_fw2x_state_get(struct aq_hw_s *self) aq_fw2x_state_get() argument 607 aq_fw2x_state2_get(struct aq_hw_s *self) aq_fw2x_state2_get() argument 612 aq_fw2x_set_downshift(struct aq_hw_s *self, u32 counter) aq_fw2x_set_downshift() argument 633 aq_fw2x_set_media_detect(struct aq_hw_s *self, bool on) aq_fw2x_set_media_detect() argument 647 aq_fw2x_get_link_capabilities(struct aq_hw_s *self) aq_fw2x_get_link_capabilities() argument [all...] |
/kernel/linux/linux-6.6/Documentation/sphinx/ |
H A D | kernel_include.py | 61 def run(self): 62 env = self.state.document.settings.env 64 os.path.expandvars(self.arguments[0])) 68 raise self.severe( 70 % (self.name, path)) 72 self.arguments[0] = path 76 #return super(KernelInclude, self).run() # won't work, see HINTs in _run() 77 return self._run() 79 def _run(self): 87 if not self [all...] |