Home
last modified time | relevance | path

Searched refs:match (Results 1 - 25 of 33) sorted by relevance

12

/drivers/hdf_core/framework/tools/idl-gen/
H A D_header_parser.py71 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 Didl_generator.py226 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 Dcan_mail.c128 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 Dre.js37 function match(ss, data) { function
63 match,
/drivers/peripheral/audio/test/sample/tools/get_mem_excel/
H A Dget_mem_excel.py143 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 Dplatform_manager.h94 * @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 Dplatform_manager.c260 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 Dwifi_hal.c368 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 Dusb_ddk_pnp_loader.c826 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 Dwifi_ap_iface.h61 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
H A Dwifi_sta_iface.h60 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
H A Dwifi_p2p_iface.cpp161 int32_t WifiP2pIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
H A Dwifi_ext_iface.cpp158 int32_t WifiExtIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
H A Dwifi_p2p_iface.h59 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
H A Dwifi_ext_iface.h59 int32_t RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) override;
H A Dwifi_ap_iface.cpp200 int32_t WifiApIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
H A Dwifi_vendor_hal.h79 WifiError RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match);
H A Dwifi_hal.h135 WifiError (*registerActionFrameReceiver)(wifiInterfaceHandle handle, const std::vector<uint8_t>& match);
H A Dwifi_sta_iface.cpp238 int32_t WifiStaIface::RegisterActionFrameReceiver(const std::string& ifName, const std::vector<uint8_t>& match) in RegisterActionFrameReceiver() argument
H A Dwifi_vendor_hal.cpp426 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 Dwifi_hal.h372 * @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 Ddevmgr_uevent.c175 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 Dhdf_model_enable_operation.py62 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 Dwlan_common_cmd.h73 const uint8_t *match, uint32_t matchLen);
/drivers/peripheral/wlan/test/hdi_service/
H A Dwlan_hdi_direct_test.cpp720 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()

Completed in 13 milliseconds

12