Home
last modified time | relevance | path

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

12345678910>>...99

/device/soc/rockchip/common/sdk_linux/drivers/media/v4l2-core/
H A Dv4l2-async.c59 return client && asd->match.i2c.adapter_id == client->adapter->nr && asd->match.i2c.address == client->addr; in match_i2c()
67 return !strcmp(asd->match.device_name, dev_name(sd->dev)); in match_devname()
83 if (sd->fwnode == asd->match.fwnode) { in match_fwnode()
89 * endpoint or a device. If they're of the same type, there's no match. in match_fwnode()
93 * match unconnected endpoints. in match_fwnode()
96 asd_fwnode_is_ep = fwnode_graph_is_endpoint(asd->match.fwnode); in match_fwnode()
107 other_fwnode = asd->match.fwnode; in match_fwnode()
109 dev_fwnode = fwnode_graph_get_port_parent(asd->match.fwnode); in match_fwnode()
120 * We have a heterogeneous match in match_fwnode()
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
H A Dbcmnvram.h131 * @param name name of variable to match
132 * @param match value to compare against value of variable
134 * to match or FALSE otherwise
137 nvram_match(const char *name, const char *match) in nvram_match() argument
143 * resulting in 'match' being an unused parameter. in nvram_match()
144 * Make a ref to 'match' to quiet the compiler warning. in nvram_match()
147 BCM_REFERENCE(match); in nvram_match()
149 return (value && !strcmp(value, match)); in nvram_match()
154 * @param name name of variable to match
156 * @param match valu
161 nvram_match_bitflag(const char *name, const int bit, const char *match) nvram_match_bitflag() argument
[all...]
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
H A Dc_parser_lite.py79 return re.match(r"[\s\S]*(Tests)[\s\S]*(Failures)[\s\S]*(Ignored)[\s\S]*", line)
82 return re.match("{}{}".format(self.pattern, _CTEST_SUITE_TEST_RUN_TAG),
86 return re.match("{}{}".format(self.pattern, _CTEST_SUITE_TIME_RUN_TAG),
90 _, message_index = re.match(
97 return re.match(
112 test_matcher = re.match(r".*(\d+ Tests).+", line)
114 re.match(r".*(Failures).*", line)
116 re.match(r".*(Ignored).*", line)
152 end_time = re.match(self.pattern, message).group().strip()
153 start_time = re.match(sel
[all...]
H A Dcpp_parser.py85 if re.match(pattern, line.strip()):
87 elif re.match(r'(\d+) test[s]? from (.*)', message):
171 matcher = re.match(r'(.*) \((\d+) ms\)', message)
225 matcher = re.match(r'Running (\d+) test[s]? from .*', message)
238 matcher = re.match(r'(\d+) test[s]? from (.*)', message)
253 matcher = re.match(r'.*\((\d+) ms total\)', message)
263 matcher = re.match(r'.*\((\d+) ms total\)', message)
344 class_matcher = re.match('^([a-zA-Z]+.*)\\.$', line)
345 method_matcher = re.match('\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$',
H A Djsunit_parser.py85 (year, re.match(self.pattern, message).group().strip())
87 (year, re.match(self.pattern,
96 match = re.match(pattern, filter_message)
97 _, status_end_index = match.span()
106 status = status_dict.get(match.group(1))
178 m_result = re.match(r".*\[suite start](.+), total cases: (\d+)",
187 if re.match(r".*\[suite start].*", message):
188 _, index = re.match(r".*\[suite start]", message).span()
H A Doh_rust_parser.py53 matcher = re.match(self.running_pattern, line)
58 matcher = re.match(self.test_result_pattern, line)
64 matcher = re.match(self.test_pattern, line)
69 matcher = re.match(self.stout_pattern, line)
H A Dcpp_parser_lite.py98 if re.match(pattern, line.strip()):
100 elif re.match(r'(\d+) test[s]? from (.*)', message):
178 matcher = re.match(r'(.*) \((\d+) ms\)(.*)', message)
226 matcher = re.match(r'.* Running (\d+) test[s]? from .*', message)
238 matcher = re.match(r'(\d+) test[s]? from (.*)', message)
250 matcher = re.match(r'.*\((\d+) ms total\)', message)
261 matcher = re.match(r'.*\((\d+) ms total\)', message)
357 self.class_result = re.compile('^([a-zA-Z]+.*)\\.$').match(line)
362 '\\s+([a-zA-Z_]+[\\S]*)(.*)?(\\s+.*)?$').match(line)
H A Doh_kernel_parser.py95 matcher = re.match(pattern, line)
107 matcher = re.match(pattern, line)
122 matcher = re.match(pattern, line)
153 matcher = re.match(pattern, line)
H A Djsunit_parser_lite.py78 (year, re.match(self.pattern, message).group().strip())
80 (year, re.match(self.pattern,
89 _, status_end_index = re.match(pattern, filter_message).span()
156 if re.match(r".*\[suite start\].*", message):
157 _, index = re.match(r".*\[suite start\]", message).span()
/test/testfwk/xdevice/plugins/devicetest/utils/
H A Dutil.py182 if re.match(rex, version):
197 match = re.search(r'(\d+\.\d+\.\d+\.\d+)', version_str)
198 if match:
199 return match.group(1)
349 match = re.search(r'File "(.*?)", line \d+, in (.+)', stack_line)
350 if match:
351 file_name = match.group(1).split(os.sep)[-1]
352 method_name = match.group(2).strip()
/device/soc/rockchip/rk3588/kernel/scripts/
H A Dmkbootimg200 match = re.search(r'^(\d{1,3})(?:\.(\d{1,3})(?:\.(\d{1,3}))?)?', x)
201 if match:
202 a = int(match.group(1))
204 if match.lastindex >= 2:
205 b = int(match.group(2))
206 if match.lastindex == 3:
207 c = int(match.group(3))
217 match = re.search(r'^(\d{4})-(\d{2})(?:-(\d{2}))?', x)
218 if match:
219 y = int(match
[all...]
/device/soc/rockchip/common/vendor/drivers/rockchip/
H A Dgrf.c208 const struct of_device_id *match; in rockchip_grf_init() local
213 np = of_find_matching_node_and_match(NULL, rockchip_grf_dt_match, &match); in rockchip_grf_init()
217 if (!match || !match->data) { in rockchip_grf_init()
222 grf_info = match->data; in rockchip_grf_init()
/device/soc/rockchip/common/sdk_linux/drivers/soc/rockchip/
H A Dgrf.c208 const struct of_device_id *match; in rockchip_grf_init() local
213 np = of_find_matching_node_and_match(NULL, rockchip_grf_dt_match, &match); in rockchip_grf_init()
217 if (!match || !match->data) { in rockchip_grf_init()
223 grf_info = match->data; in rockchip_grf_init()
/device/soc/rockchip/common/sdk_linux/drivers/regulator/
H A Dof_regulator.c319 * @matches: match table for the regulators
320 * @num_matches: number of entries in match table
322 * This function uses a match table specified by the regulator driver to
327 * or otherwise the child node's name. Note that the match table is modified
357 struct of_regulator_match *match = &matches[i]; in of_regulator_match() local
358 match->init_data = NULL; in of_regulator_match()
359 match->of_node = NULL; in of_regulator_match()
369 struct of_regulator_match *match = &matches[i]; in of_regulator_match() local
370 if (match->of_node) { in of_regulator_match()
374 if (strcmp(match in of_regulator_match()
[all...]
/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)
/device/soc/rockchip/common/sdk_linux/drivers/cpufreq/
H A Dcpufreq-dt-platdev.c403 const struct of_device_id *match; in cpufreq_dt_platdev_init() local
410 match = of_match_node(whitelist, np); in cpufreq_dt_platdev_init()
411 if (match) { in cpufreq_dt_platdev_init()
412 data = match->data; in cpufreq_dt_platdev_init()
/test/testfwk/arkxtest/uitest/test/
H A Dui_driver_test.cpp300 bool match = true; in TEST_F()
301 match = match && window.bundleName_ == filterBundle["bundleName"].get<string>(); in TEST_F()
302 return match; in TEST_F()
312 bool match = true; in TEST_F()
313 match = match && window.bundleName_ == filterBundleNotFind["bundleName"].get<string>(); in TEST_F()
314 return match; in TEST_F()
375 bool match = true; in TEST_F()
376 match in TEST_F()
[all...]
/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()
/test/xts/acts/pcs/pcs_py/
H A DtestRealRandomGenerate.py43 if not re.match(pattern, randomNumber):
45 assert re.match(pattern, randomNumber)
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/
H A Dmk_prim_xml_step1.py140 match=re.search('PRIM_XML_HI_DIAG_LOG_MSG_', line)
141 if match:
153 match=re.search('_PRIM_PRI_', line)
154 if match:
/device/soc/rockchip/rk3588/kernel/drivers/clk/rockchip/
H A Dclk-link.c132 const struct of_device_id *match; in rockchip_clk_link_probe() local
137 match = of_match_node(rockchip_clk_link_of_match, node); in rockchip_clk_link_probe()
138 if (!match) in rockchip_clk_link_probe()
146 priv->link = match->data; in rockchip_clk_link_probe()
/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
/device/soc/rockchip/common/sdk_linux/drivers/phy/rockchip/
H A Dphy-rockchip-usb.c994 const struct of_device_id *match; in rockchip_usb_phy_probe() local
1003 match = of_match_device(dev->driver->of_match_table, dev); in rockchip_usb_phy_probe()
1004 if (!match || !match->data) { in rockchip_usb_phy_probe()
1009 phy_base->pdata = match->data; in rockchip_usb_phy_probe()
1065 const struct of_device_id *match; in rockchip_init_usb_uart() local
1075 np = of_find_matching_node_and_match(NULL, rockchip_usb_phy_dt_ids, &match); in rockchip_init_usb_uart()
1081 pr_debug("%s: using settings for %s\n", __func__, match->compatible); in rockchip_init_usb_uart()
1082 data = match->data; in rockchip_init_usb_uart()
1085 pr_err("%s: usb-uart not available on %s\n", __func__, match in rockchip_init_usb_uart()
[all...]
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/ispp/
H A Dhw.c291 const struct of_device_id *match; in rkispp_hw_probe() local
300 match = of_match_node(rkispp_hw_of_match, node); in rkispp_hw_probe()
301 if (IS_ERR(match)) { in rkispp_hw_probe()
302 return PTR_ERR(match); in rkispp_hw_probe()
312 match_data = match->data; in rkispp_hw_probe()
313 hw_dev->match_data = match->data; in rkispp_hw_probe()

Completed in 15 milliseconds

12345678910>>...99