/kernel/linux/linux-5.10/drivers/staging/rtl8192e/ |
H A D | rtl819x_TSProc.c | 37 struct rx_reorder_entry, List); in RxPktPendingTimeout() 45 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 59 list_add_tail(&pReorderEntry->List, in RxPktPendingTimeout() 160 list_add_tail(&pTxTS->TsCommonInfo.List, in TSInitialize() 184 list_add_tail(&pRxTS->TsCommonInfo.List, in TSInitialize() 190 list_add_tail(&pRxReorderEntry->List, in TSInitialize() 252 list_for_each_entry(pRet, psearch_list, List) { in SearchAdmitTRStream() 259 if (&pRet->List != psearch_list) in SearchAdmitTRStream() 263 if (pRet && &pRet->List != psearch_list) in SearchAdmitTRStream() 355 struct ts_common_info, List); in GetTs() [all...] |
H A D | rtl819x_TS.h | 21 struct list_head List; member
|
H A D | rtllib_rx.c | 457 List))->SeqNum)) in AddReorderEntry() 461 struct rx_reorder_entry, List))->SeqNum)) in AddReorderEntry() 466 pReorderEntry->List.next = pList->next; in AddReorderEntry() 467 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 468 pReorderEntry->List.prev = pList; in AddReorderEntry() 469 pList->next = &pReorderEntry->List; in AddReorderEntry() 550 struct rx_reorder_entry, List); in rtllib_FlushRxTsPendingPkts() 553 list_del_init(&pRxReorderEntry->List); in rtllib_FlushRxTsPendingPkts() 558 list_add_tail(&pRxReorderEntry->List, in rtllib_FlushRxTsPendingPkts() [all...] |
H A D | rtllib.h | 1223 struct list_head List; member
|
/kernel/linux/linux-6.6/drivers/staging/rtl8192e/ |
H A D | rtl819x_TSProc.c | 29 struct rx_reorder_entry, List); in RxPktPendingTimeout() 37 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 51 list_add_tail(&pReorderEntry->List, in RxPktPendingTimeout() 145 list_add_tail(&pTxTS->TsCommonInfo.List, in TSInitialize() 162 list_add_tail(&pRxTS->ts_common_info.List, in TSInitialize() 168 list_add_tail(&pRxReorderEntry->List, in TSInitialize() 210 list_for_each_entry(pRet, psearch_list, List) { in SearchAdmitTRStream() 216 if (&pRet->List != psearch_list) in SearchAdmitTRStream() 220 if (pRet && &pRet->List != psearch_list) in SearchAdmitTRStream() 310 struct ts_common_info, List); in GetTs() [all...] |
H A D | rtl819x_TS.h | 21 struct list_head List; member
|
H A D | rtllib_rx.c | 446 List))->SeqNum)) in AddReorderEntry() 450 struct rx_reorder_entry, List))->SeqNum)) in AddReorderEntry() 455 pReorderEntry->List.next = pList->next; in AddReorderEntry() 456 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 457 pReorderEntry->List.prev = pList; in AddReorderEntry() 458 pList->next = &pReorderEntry->List; in AddReorderEntry() 539 struct rx_reorder_entry, List); in rtllib_FlushRxTsPendingPkts() 542 list_del_init(&pRxReorderEntry->List); in rtllib_FlushRxTsPendingPkts() 547 list_add_tail(&pRxReorderEntry->List, in rtllib_FlushRxTsPendingPkts() [all...] |
H A D | rtllib.h | 1175 struct list_head List; member
|
/kernel/linux/linux-6.6/tools/testing/kunit/ |
H A D | kunit_kernel.py | 18 from typing import Iterator, List, Optional, Tuple namespace 60 def make_olddefconfig(self, build_dir: str, make_options: Optional[List[str]]) -> None: 74 def make(self, jobs: int, build_dir: str, make_options: Optional[List[str]]) -> None: 95 def start(self, params: List[str], build_dir: str) -> subprocess.Popen: 116 def start(self, params: List[str], build_dir: str) -> subprocess.Popen: 145 def start(self, params: List[str], build_dir: str) -> subprocess.Popen: 165 kunitconfig_paths: Optional[List[str]]=None) -> kunit_config.Kconfig: 200 extra_qemu_args: Optional[List[str]], 232 kunitconfig_paths: Optional[List[str]]=None, 233 kconfig_add: Optional[List[st [all...] |
H A D | qemu_config.py | 9 from typing import List namespace 19 extra_qemu_params: List[str]
|
H A D | kunit.py | 21 from typing import Iterable, List, Optional, Sequence, Tuple namespace 42 make_options: Optional[List[str]] 60 kernel_args: Optional[List[str]] 107 def _list_tests(linux: kunit_kernel.LinuxSourceTree, request: KunitExecRequest) -> List[str]: 145 def _suites_from_test_list(tests: List[str]) -> List[str]: 147 suites = [] # type: List[str] 421 qemu_args: List[str] = []
|
H A D | kunit_config.py | 11 from typing import Any, Dict, Iterable, List, Tuple namespace 63 def conflicting_options(self, other: 'Kconfig') -> List[Tuple[KconfigEntry, KconfigEntry]]: 64 diff = [] # type: List[Tuple[KconfigEntry, KconfigEntry]]
|
H A D | kunit_parser.py | 18 from typing import Iterable, Iterator, List, Optional, Tuple namespace 33 subtests : List[Test] - list of subtests 34 log : List[str] - log of KTAP lines that correspond to the test 44 self.subtests = [] # type: List[Test] 45 self.log = [] # type: List[str] 213 KTAP_END = re.compile(r'\s*(List of all partitions:|' 253 def check_version(version_num: int, accepted_versions: List[int], 262 accepted_version - List of accepted KTAP or TAP versions 435 def parse_diagnostic(lines: LineStream) -> List[str]: 452 log = [] # type: List[st [all...] |
H A D | run_checks.py | 17 from typing import Dict, List, Sequence namespace
|
/kernel/linux/linux-5.10/tools/testing/kunit/ |
H A D | kunit_parser.py | 15 from typing import List, Optional, Tuple namespace 51 kunit_end_re = re.compile('(List of all partitions:|' 100 def consume_non_diagnositic(lines: List[str]) -> None: 104 def save_non_diagnositic(lines: List[str], test_case: TestCase) -> None: 115 def parse_ok_not_ok_test_case(lines: List[str], test_case: TestCase) -> bool: 141 def parse_diagnostic(lines: List[str], test_case: TestCase) -> bool: 155 def parse_test_case(lines: List[str]) -> Optional[TestCase]: 167 def parse_subtest_header(lines: List[str]) -> Optional[str]: 180 def parse_subtest_plan(lines: List[str]) -> Optional[int]: 201 def parse_ok_not_ok_test_suite(lines: List[st [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | gecko.py | 30 from typing import List, Dict, Optional, NamedTuple, Set, Tuple, Any namespace 109 samples: List[Sample] = field(default_factory=list) 110 frameTable: List[Frame] = field(default_factory=list) 111 stringTable: List[str] = field(default_factory=list) 113 stackTable: List[Stack] = field(default_factory=list) 120 samples: List[Sample] = field(default_factory=list) 121 frameTable: List[Frame] = field(default_factory=list) 122 stringTable: List[str] = field(default_factory=list) 124 stackTable: List[Stack] = field(default_factory=list) 177 def _add_sample(self, comm: str, stack: List[st [all...] |
/kernel/linux/linux-5.10/drivers/staging/rtl8192u/ieee80211/ |
H A D | rtl819x_TSProc.c | 43 pReorderEntry = list_entry(pRxTs->rx_pending_pkt_list.prev, struct rx_reorder_entry, List); in RxPktPendingTimeout() 49 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 58 list_add_tail(&pReorderEntry->List, &ieee->RxReorder_Unused_List); in RxPktPendingTimeout() 181 // Initialize unused Rx Reorder List. in TSInitialize() 184 list_add_tail(&pRxReorderEntry->List, &ieee->RxReorder_Unused_List); in TSInitialize() 425 //pRxReorderEntry = list_entry(&pRxTS->rx_pending_pkt_list.prev,RX_REORDER_ENTRY,List); in RemoveTsEntry() 426 pRxReorderEntry = list_entry(pRxTS->rx_pending_pkt_list.prev, struct rx_reorder_entry, List); in RemoveTsEntry() 427 list_del_init(&pRxReorderEntry->List); in RemoveTsEntry() 441 list_add_tail(&pRxReorderEntry->List, &ieee->RxReorder_Unused_List); in RemoveTsEntry()
|
H A D | ieee80211_rx.c | 508 if (SN_LESS(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->SeqNum)) in AddReorderEntry() 510 else if (SN_EQUAL(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->SeqNum)) in AddReorderEntry() 515 pReorderEntry->List.next = pList->next; in AddReorderEntry() 516 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 517 pReorderEntry->List.prev = pList; in AddReorderEntry() 518 pList->next = &pReorderEntry->List; in AddReorderEntry() 663 pReorderEntry = list_entry(ieee->RxReorder_Unused_List.next, struct rx_reorder_entry, List); in RxReorderIndicatePacket() 664 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket() 674 list_add_tail(&pReorderEntry->List, in RxReorderIndicatePacket() [all...] |
H A D | ieee80211.h | 1474 struct list_head List; member
|
/kernel/linux/linux-6.6/drivers/staging/rtl8192u/ieee80211/ |
H A D | rtl819x_TSProc.c | 43 pReorderEntry = list_entry(pRxTs->rx_pending_pkt_list.prev, struct rx_reorder_entry, List); in RxPktPendingTimeout() 49 list_del_init(&pReorderEntry->List); in RxPktPendingTimeout() 58 list_add_tail(&pReorderEntry->List, &ieee->RxReorder_Unused_List); in RxPktPendingTimeout() 181 // Initialize unused Rx Reorder List. in TSInitialize() 184 list_add_tail(&pRxReorderEntry->List, &ieee->RxReorder_Unused_List); in TSInitialize() 425 //pRxReorderEntry = list_entry(&pRxTS->rx_pending_pkt_list.prev,RX_REORDER_ENTRY,List); in RemoveTsEntry() 426 pRxReorderEntry = list_entry(pRxTS->rx_pending_pkt_list.prev, struct rx_reorder_entry, List); in RemoveTsEntry() 427 list_del_init(&pRxReorderEntry->List); in RemoveTsEntry() 441 list_add_tail(&pRxReorderEntry->List, &ieee->RxReorder_Unused_List); in RemoveTsEntry()
|
H A D | ieee80211_rx.c | 508 if (SN_LESS(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->SeqNum)) in AddReorderEntry() 510 else if (SN_EQUAL(pReorderEntry->SeqNum, list_entry(pList->next, struct rx_reorder_entry, List)->SeqNum)) in AddReorderEntry() 515 pReorderEntry->List.next = pList->next; in AddReorderEntry() 516 pReorderEntry->List.next->prev = &pReorderEntry->List; in AddReorderEntry() 517 pReorderEntry->List.prev = pList; in AddReorderEntry() 518 pList->next = &pReorderEntry->List; in AddReorderEntry() 663 pReorderEntry = list_entry(ieee->RxReorder_Unused_List.next, struct rx_reorder_entry, List); in RxReorderIndicatePacket() 664 list_del_init(&pReorderEntry->List); in RxReorderIndicatePacket() 674 list_add_tail(&pReorderEntry->List, in RxReorderIndicatePacket() [all...] |
H A D | ieee80211.h | 1411 struct list_head List; member
|
/kernel/linux/linux-5.10/tools/testing/selftests/ |
H A D | run_kselftest.sh | 26 -l | --list List the available collection:test entries
|
/kernel/linux/linux-6.6/tools/testing/selftests/ |
H A D | run_kselftest.sh | 26 -l | --list List the available collection:test entries
|
/kernel/linux/linux-6.6/tools/perf/pmu-events/ |
H A D | metric.py | 7 from typing import Dict, List, Optional, Set, Tuple, Union namespace 490 def __init__(self, name: str, metric_list: List[Union[Metric, 574 def RewriteMetricsInTermsOfOthers(metrics: List[Tuple[str, str, Expression]]
|