Home
last modified time | relevance | path

Searched refs:ext (Results 1 - 25 of 976) sorted by relevance

12345678910>>...40

/test/xts/dcts/distributedhardware/distributedinputtest/
H A Ddistributed_input_test.cpp21 using namespace testing::ext;
161 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0100, testing::ext::TestSize.Level0) in HWTEST_F()
169 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0200, testing::ext::TestSize.Level0) in HWTEST_F()
177 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0300, testing::ext::TestSize.Level0) in HWTEST_F()
186 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0400, testing::ext::TestSize.Level0) in HWTEST_F()
195 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0500, testing::ext::TestSize.Level0) in HWTEST_F()
203 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0600, testing::ext::TestSize.Level0) in HWTEST_F()
211 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0700, testing::ext::TestSize.Level0) in HWTEST_F()
220 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0800, testing::ext::TestSize.Level0) in HWTEST_F()
229 HWTEST_F(DistributedInputTest, SUB_DH_DInput_Dcts_0900, testing::ext
[all...]
/test/testfwk/xdevice/plugins/devicetest/controllers/tools/
H A Dscreen_agent.py74 ext=".png", exe_type="takeImage"):
83 if picture_name.endswith(ext):
84 picture_name = picture_name.strip(ext)
89 DeccVariable.cur_case().image_num, ext)
93 DeccVariable.cur_case().video_num, ext)
96 _device.device_sn.replace("?", "sn").replace(":", "_"), picture_name, ext)
100 DeccVariable.cur_case().dump_xml_num, ext)
118 def _do_capture(cls, _device, link, path, title, ext=".png"):
126 link, path = _device.capture(link, path, ext)
139 def __screen_and_save_picture(cls, _device, name, ext
[all...]
/test/testfwk/xdevice/src/xdevice/_core/executor/
H A Dsource.py347 filename, ext = test_source.split()[0], "str"
349 filename, ext = get_filename_extension(test_source)
357 os.path.join(os.path.dirname(test_source), filename), ext, config)
358 test_type = _get_test_type(config_file, test_driver, ext)
367 ext, test_type)
434 def _get_config_file(filename, ext=None, config=None):
439 if ext and os.path.exists("%s%s%s" % (filename, ext,
441 config_file = "%s%s%s" % (filename, ext, MODULE_CONFIG_SUFFIX)
476 def _get_test_type(config_file, test_driver, ext)
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/common/
H A Dloadbmp.c568 char *ext = GetExtName((char *)filename); in LoadImage() local
570 if ((filename == HI_NULL) || (pVideoLogo == HI_NULL) || (ext == NULL)) { in LoadImage()
574 if (strcmp(ext, "bmp") == 0) { in LoadImage()
589 char *ext = GetExtName((char *)filename); in LoadImageEx() local
591 if (ext == HI_NULL) { in LoadImageEx()
596 if (strcmp(ext, "bmp") == 0) { in LoadImageEx()
612 char *ext = GetExtName((char *)filename); in LoadCanvasEx() local
614 if (ext == HI_NULL) { in LoadCanvasEx()
619 if (strcmp(ext, "bmp") == 0) { in LoadCanvasEx()
/test/xts/dcts/communication/softbus_standard/socket_trans/server/
H A DSocketTestServer.cpp23 using namespace testing::ext;
124 static void OnStream(int32_t socket, const StreamData *data, const StreamData *ext, const StreamFrameInfo *param) in OnStream() argument
134 if (ext == nullptr) { in OnStream()
135 LOG("[cb][data]OnStream socket id[%d], ext is nullptr", socket); in OnStream()
146 LOG("[cb][data]OnStream Success buf:%s,", (ext->buf != NULL ? ext->buf : "null")); in OnStream()
/device/soc/rockchip/common/sdk_linux/kernel/power/
H A Dsnapshot.c577 struct mem_extent *ext, *aux; in free_mem_extents() local
579 list_for_each_entry_safe(ext, aux, list, hook) in free_mem_extents()
581 list_del(&ext->hook); in free_mem_extents()
582 kfree(ext); in free_mem_extents()
602 struct mem_extent *ext, *cur, *aux; in create_mem_extents() local
607 list_for_each_entry(ext, list, hook) if (zone_start <= ext->end) break; in create_mem_extents()
609 if (&ext->hook == list || zone_end < ext->start) { in create_mem_extents()
620 list_add_tail(&new_ext->hook, &ext in create_mem_extents()
657 struct mem_extent *ext; memory_bm_create() local
[all...]
/test/xts/acts/communication_lite/dsoftbus_hal/src/
H A Dsession_test.c256 const StreamData ext = {0}; variable
259 ret = SendStream(-1, &streamData, &ext, &param);
262 ret = SendStream(sessionId, NULL, &ext, &param);
268 ret = SendStream(sessionId, &streamData, &ext, NULL);
/test/xts/hats/hdf/hdf_lite/display/
H A Dloadbmp_test.c302 char *ext = strrchr((const char *)fileName, '.'); in LoadImageEx() local
304 if (ext == NULL) { in LoadImageEx()
309 ext = ext + 1; in LoadImageEx()
310 if (strcmp(ext, "bmp") == 0) { in LoadImageEx()
/test/xts/dcts/communication/softbus_standard/common/
H A Dsocket_common.c272 static void OnStreamData(int32_t socket, const StreamData *data, const StreamData *ext, const StreamFrameInfo *param) in OnStreamData() argument
282 if (ext == NULL) { in OnStreamData()
283 LOG("[cb][data]OnStream socket id[%d], ext is NULL", socket); in OnStreamData()
293 LOG("[cb][data]OnStream Success buf:%s,", (ext->buf != NULL ? ext->buf : "null")); in OnStreamData()
/test/testfwk/developer_test/examples/calculator/test/unittest/common/
H A Dcalculator_add_test.cpp19 using namespace testing::ext;
/test/xts/acts/graphic/vkgl/src/deqpgles3/
H A DActsDeqpgles30031TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30032TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30033TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30034TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30001TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30002TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30003TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30004TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30005TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30006TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30007TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30026TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30027TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30028TestSuite.cpp24 using namespace testing::ext;
H A DActsDeqpgles30029TestSuite.cpp24 using namespace testing::ext;

Completed in 10 milliseconds

12345678910>>...40