/drivers/hdf_core/framework/tools/idl-gen/ |
H A D | _header_parser.py | 71 tt = re.match(r".*enum *((\w+) *\*) *\w* *;", line) 76 tt = re.match(r".*(\[\w* *\(.*\) *]) *", line) 100 tt = re.match(r"(typedef )* *\w+ \( \* \) \(( .* )\)", params) 108 tt = re.match(" *(const )*(struct |enum |union )* *", params) 115 tt = re.match(r"((unsigned )*[a-zA-Z0-9_:]+( *\** *\**)) *", params) 122 tt = re.match("([a-zA-Z0-9_]+) *(,)", params) 159 tt = re.match(r"0x|0X|\(|-", v_value)
|
H A D | idl_generator.py | 226 tt = re.match(r"(const )* *%s *(\**) *" % ct, c_type) 252 tt = re.match(r"(const )* *%s *\** *" % type_name, c_type) 263 tt = re.match("(const *)* *(std::)*map *<%s, %s>" % (type_pattern, type_pattern), c_type) 269 tt = re.match("(const *)* *(std::)*vector *<%s>" % type_pattern, c_type)
|
/drivers/hdf_core/framework/support/platform/src/can/ |
H A D | can_mail.c | 128 bool match = true; in CanRxBoxMsgMatch() local 139 match = true; in CanRxBoxMsgMatch() 142 match = false; in CanRxBoxMsgMatch() 145 return match; in CanRxBoxMsgMatch()
|
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/ |
H A D | re.js | 37 function match(ss, data) { function 63 match,
|
/drivers/peripheral/audio/test/sample/tools/get_mem_excel/ |
H A D | get_mem_excel.py | 143 for match in matchs: 144 if re.findall(match, mem_name): 145 mem_name = match
|
/drivers/hdf_core/framework/support/platform/include/fwk/ |
H A D | platform_manager.h | 94 * @param data Indicates the pointer to the data passed to match function. 95 * @param match Indicates the pointer to the match function. 101 bool (*match)(struct PlatformDevice *pdevice, void *data));
|
/drivers/hdf_core/framework/support/platform/src/fwk/ |
H A D | platform_manager.c | 260 bool (*match)(struct PlatformDevice *pdevice, void *data)) in PlatformManagerFindDevice() 265 if (manager == NULL || match == NULL) { in PlatformManagerFindDevice() 266 PLAT_LOGE("PlatformManagerFindDevice: manager or match is null!"); in PlatformManagerFindDevice() 276 if (tmp == NULL || !match(tmp, data)) { in PlatformManagerFindDevice()
|
/drivers/peripheral/wlan/hal/src/ |
H A D | wifi_hal.c | 368 static int32_t RegisterActionFrameReceiverInner(const char *ifName, const uint8_t *match, uint32_t matchLen) in RegisterActionFrameReceiverInner() argument 370 if (ifName == NULL || match == NULL || matchLen == 0) { in RegisterActionFrameReceiverInner() 374 return WifiRegisterActionFrameReceiver(ifName, match, matchLen); in RegisterActionFrameReceiverInner() 617 static int32_t RegisterActionFrameReceiver(const char *ifName, const uint8_t *match, uint32_t matchLen) in RegisterActionFrameReceiver() argument 621 int32_t ret = RegisterActionFrameReceiverInner(ifName, match, matchLen); in RegisterActionFrameReceiver()
|
/drivers/hdf_core/framework/model/usb/src/ |
H A D | usb_ddk_pnp_loader.c | 826 bool match = false; in UsbDdkPnpLoaderAddDevice() local 836 HDF_LOGD("%s:%d matchDevice end, index=%d tableCount=%d is match \ in UsbDdkPnpLoaderAddDevice() 839 match = true; in UsbDdkPnpLoaderAddDevice() 845 return match; in UsbDdkPnpLoaderAddDevice() 950 bool match = false; in UsbDdkPnpLoaderDevice() local 953 match = true; in UsbDdkPnpLoaderDevice() 956 if (!match) { in UsbDdkPnpLoaderDevice()
|
/drivers/peripheral/wlan/chip/hdi_service/ |
H A D | wifi_ap_iface.h | 61 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
|
H A D | wifi_sta_iface.h | 60 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
|
H A D | wifi_p2p_iface.cpp | 161 int32_t WifiP2pIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
|
H A D | wifi_ext_iface.cpp | 158 int32_t WifiExtIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
|
H A D | wifi_p2p_iface.h | 59 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
|
H A D | wifi_ext_iface.h | 59 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
|
H A D | wifi_ap_iface.cpp | 200 int32_t WifiApIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
|
H A D | wifi_vendor_hal.h | 79 WifiError RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match);
|
H A D | wifi_hal.h | 135 WifiError (*registerActionFrameReceiver)(wifiInterfaceHandle handle, const std::vector<uint8_t>& match);
|
H A D | wifi_sta_iface.cpp | 238 int32_t WifiStaIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
|
H A D | wifi_vendor_hal.cpp | 426 WifiError WifiVendorHal::RegisterActionFrameReceiver(const std::string& ifaceName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument 428 return globalFuncTable_.registerActionFrameReceiver(GetIfaceHandle(ifaceName), match); in RegisterActionFrameReceiver()
|
/drivers/peripheral/wlan/interfaces/include/ |
H A D | wifi_hal.h | 372 * @param match Indicates the data matching action frame. 380 int32_t (*registerActionFrameReceiver)(const char *ifName, const uint8_t *match, uint32_t matchLen);
|
/drivers/hdf_core/adapter/uhdf2/manager/src/ |
H A D | devmgr_uevent.c | 175 HDF_LOGE("match key invalid [%{public}s]", subStr); in DevMgrUeventParseMatchKey() 250 HDF_LOGE("parse failed, no match key"); in DevMgrUeventParseHdfEvent() 438 bool match = false; in DevMgrUeventMatchRule() local 442 match = true; in DevMgrUeventMatchRule() 449 if (!match) { in DevMgrUeventMatchRule()
|
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/ |
H A D | hdf_model_enable_operation.py | 62 if re.compile(self.re_temp).match(line):
74 model_name = re.compile(self.re_temp2).match(i.strip())
|
/drivers/peripheral/wlan/hdi_service/service_common/ |
H A D | wlan_common_cmd.h | 73 const uint8_t *match, uint32_t matchLen);
|
/drivers/peripheral/wlan/test/hdi_service/ |
H A D | wlan_hdi_direct_test.cpp | 720 uint8_t match [ETH_ADDR_LEN] = {0x12, 0x34, 0x56, 0x78, 0xab, 0xcd};
in HWTEST_F() local 724 rc = g_wlanObj->RegisterActionFrameReceiver(g_wlanObj, nullptr, match, matchLen);
in HWTEST_F() 728 rc = g_wlanObj->RegisterActionFrameReceiver(g_wlanObj, ifName, match, 0);
in HWTEST_F() 730 rc = g_wlanObj->RegisterActionFrameReceiver(g_wlanObj, ifName, match, matchLen);
in HWTEST_F()
|