Home
last modified time | relevance | path

Searched refs:what (Results 1 - 25 of 713) sorted by relevance

12345678910>>...29

/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Derror.hpp61 error(cl_int code, std::string what = "") : in error()
62 std::runtime_error(what), code(code) { in error()
75 invalid_build_options_error(const std::string &what = "") : in invalid_build_options_error()
76 error(CL_INVALID_BUILD_OPTIONS, what) {} in invalid_build_options_error()
81 build_error(const std::string &what = "") : in build_error()
82 error(CL_BUILD_PROGRAM_FAILURE, what) {} in build_error()
91 invalid_object_error(std::string what = "") : in invalid_object_error()
92 error(CL_INVALID_COMMAND_QUEUE, what) {} in invalid_object_error()
98 invalid_object_error(std::string what = "") : in invalid_object_error()
99 error(CL_INVALID_CONTEXT, what) {} in invalid_object_error()
[all...]
/foundation/ai/intelligent_voice_framework/utils/
H A Dmessage_queue.cpp24 Message::Message(uint32_t what) : what_(what), arg1_(0), arg2_(0) in Message() argument
28 Message::Message(uint32_t what, int32_t arg1) : what_(what), arg1_(arg1) in Message() argument
32 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3) in Message() argument
33 : what_(what), arg1_(arg1), arg2_(arg2), arg3_(arg3) in Message()
37 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, const std::string &obj) in Message() argument
38 : what_(what), arg1_(arg1), arg2_(arg2), obj_(obj) in Message()
42 Message::Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3, const std::string &obj) in Message() argument
43 : what_(what), arg1 in Message()
47 Message(uint32_t what, std::shared_ptr<void> obj2) Message() argument
51 Message(uint32_t what, std::shared_ptr<void> obj2, std::shared_ptr<void> obj3) Message() argument
56 Message(uint32_t what, void* voidPtr) Message() argument
60 Message(uint32_t what, int32_t arg1, void* voidPtr) Message() argument
[all...]
H A Dmessage_queue.h34 explicit Message(uint32_t what);
35 Message(uint32_t what, int32_t arg1);
36 Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3);
37 Message(uint32_t what, int32_t arg1, int32_t arg2, const std::string &obj);
38 Message(uint32_t what, int32_t arg1, int32_t arg2, float arg3, const std::string &obj);
39 Message(uint32_t what, std::shared_ptr<void> obj2);
40 Message(uint32_t what, std::shared_ptr<void> obj2, std::shared_ptr<void> obj3);
41 Message(uint32_t what, void* voidPtr);
42 Message(uint32_t what, int32_t arg1, void* voidPtr);
/third_party/python/Lib/test/
H A Dtest_sndhdr.py22 what = sndhdr.what(filename)
23 self.assertNotEqual(what, None, filename)
24 self.assertSequenceEqual(what, expected)
25 self.assertEqual(what.filetype, expected[0])
26 self.assertEqual(what.framerate, expected[1])
27 self.assertEqual(what.nchannels, expected[2])
28 self.assertEqual(what.nframes, expected[3])
29 self.assertEqual(what.sampwidth, expected[4])
33 what
[all...]
H A Dtest_imghdr.py49 self.assertEqual(imghdr.what(filename), expected)
51 self.assertEqual(imghdr.what(stream), expected)
54 self.assertEqual(imghdr.what(None, data), expected)
55 self.assertEqual(imghdr.what(None, bytearray(data)), expected)
61 self.assertEqual(imghdr.what(pathlib.Path(filename)), expected)
69 self.assertEqual(imghdr.what(None, b'eggs'), 'ham')
78 self.assertEqual(imghdr.what(stream), 'png')
83 imghdr.what()
85 imghdr.what(None)
87 imghdr.what(sel
[all...]
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/utils/src/
H A Dmessage.cpp27 Message::Message(int what) : Message(what, 0, 0, 0) {} in Message() argument
29 Message::Message(int what, std::string strArg) : Message(what, 0, 0, 0, strArg) {} in Message() argument
31 Message::Message(int what, int arg1) : Message(what, arg1, 0, 0) {} in Message() argument
33 Message::Message(int what, int arg1, int arg2) : Message(what, arg1, arg2, 0) {} in Message() argument
35 Message::Message(int what, int arg1, std::string strArg) : Message(what, arg argument
37 Message(int what, int arg1, int arg2, long uptimeMillis) Message() argument
39 Message(int what, int arg1, int arg2, long uptimeMillis, std::string strArg) Message() argument
[all...]
H A Dhandler.cpp97 bool Handler::SendCastMessage(int what) in SendCastMessage() argument
99 return SendCastMessage(Message(what)); in SendCastMessage()
102 bool Handler::SendCastMessage(int what, int arg1) in SendCastMessage() argument
104 return SendCastMessage(Message(what, arg1)); in SendCastMessage()
107 bool Handler::SendCastMessage(int what, int arg1, int arg2) in SendCastMessage() argument
109 return SendCastMessage(Message(what, arg1, arg2)); in SendCastMessage()
112 bool Handler::SendCastMessageDelayed(int what, long uptimeMillis) in SendCastMessageDelayed() argument
118 Message msg(what); in SendCastMessageDelayed()
/foundation/CastEngine/castengine_cast_plus_stream/src/utils/src/
H A Dmessage.cpp27 Message::Message(int what) : Message(what, 0, 0, 0) {} in Message() argument
29 Message::Message(int what, std::string strArg) : Message(what, 0, 0, 0, strArg) {} in Message() argument
31 Message::Message(int what, int arg1) : Message(what, arg1, 0, 0) {} in Message() argument
33 Message::Message(int what, int arg1, int arg2) : Message(what, arg1, arg2, 0) {} in Message() argument
35 Message::Message(int what, int arg1, std::string strArg) : Message(what, arg argument
37 Message(int what, int arg1, int arg2, long uptimeMillis) Message() argument
39 Message(int what, int arg1, int arg2, long uptimeMillis, std::string strArg) Message() argument
[all...]
/foundation/CastEngine/castengine_cast_plus_stream/src/utils/include/
H A Dmessage.h52 explicit Message(int what);
53 Message(int what, std::string strArg);
54 Message(int what, std::string deviceId, EventCode eventCode) : what_(what), in Message() argument
56 Message(int what, int arg1);
57 Message(int what, int arg1, int arg2);
58 Message(int what, int arg1, int arg2, long uptimeMillis);
59 Message(int what, int arg1, int arg2, long uptimeMillis, std::string strArg);
60 Message(int what, int arg1, std::string strArg);
83 bool operator==(int what) cons
[all...]
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/utils/include/
H A Dmessage.h52 explicit Message(int what);
53 Message(int what, std::string strArg);
54 Message(int what, std::string deviceId, EventCode eventCode) : what_(what), in Message() argument
56 Message(int what, int arg1);
57 Message(int what, int arg1, int arg2);
58 Message(int what, int arg1, int arg2, long uptimeMillis);
59 Message(int what, int arg1, int arg2, long uptimeMillis, std::string strArg);
60 Message(int what, int arg1, std::string strArg);
83 bool operator==(int what) cons
[all...]
/third_party/node/test/parallel/
H A Dtest-child-process-fork-net-server.js39 if (msg.what !== 'server') return;
49 process.send({ what: 'connection' });
55 process.send({ what: 'listening' });
64 if (msg.what !== 'close') return;
68 process.send({ what: 'close' });
75 process.send({ what: 'ready' });
92 child.send({ what: 'close' });
116 child.send({ what: 'server' }, server);
126 if (msg.what === 'listening') {
139 } else if (msg.what
[all...]
/third_party/toybox/toys/posix/
H A Dfile.c93 // If what we've seen so far doesn't seem consistent, bail. in do_elf_file()
105 // Stash what we need from the header; it's okay to reuse toybuf after this. in do_elf_file()
292 char *what; in do_regular_file() local
296 if (s[4] == 7) what = (bit==32)?"x86":"x86-"; in do_regular_file()
297 else if (s[4] == 12) what = "arm"; in do_regular_file()
298 else if (s[4] == 18) what = "ppc"; in do_regular_file()
299 else what = NULL; in do_regular_file()
300 if (what) xprintf("%s%s ", what, (bit==32)?"":"64"); in do_regular_file()
303 if (s[12] == 1) what in do_regular_file()
410 char *what = 0; do_regular_file() local
450 char *name = *arg, *what = "unknown"; file_main() local
[all...]
/third_party/curl/tests/libtest/
H A Dlib586.c44 const char *what; in my_lock() local
52 what = "share"; in my_lock()
55 what = "dns"; in my_lock()
58 what = "cookie"; in my_lock()
61 what = "ssl_session"; in my_lock()
67 printf("lock: %-6s [%s]: %d\n", what, user->text, user->counter); in my_lock()
74 const char *what; in my_unlock() local
79 what = "share"; in my_unlock()
82 what = "dns"; in my_unlock()
85 what in my_unlock()
[all...]
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/network/
H A Dnetwork_agent_template_test.cpp55 LOGE("%{public}s", e.what()); in HWTEST_F()
81 LOGE("%{public}s", e.what()); in HWTEST_F()
107 LOGE("%{public}s", e.what()); in HWTEST_F()
127 LOGE("%{public}s", e.what()); in HWTEST_F()
147 LOGE("%{public}s", e.what()); in HWTEST_F()
173 LOGE("%{public}s", e.what()); in HWTEST_F()
199 LOGE("%{public}s", e.what()); in HWTEST_F()
219 LOGE("%{public}s", e.what()); in HWTEST_F()
239 LOGE("%{public}s", e.what()); in HWTEST_F()
259 LOGE("%{public}s", e.what()); in HWTEST_F()
[all...]
H A Dkernel_talker_test.cpp83 LOGE("%{public}s", e.what()); in HWTEST_F()
103 LOGE("%{public}s", e.what()); in HWTEST_F()
123 LOGE("%{public}s", e.what()); in HWTEST_F()
143 LOGE("%{public}s", e.what()); in HWTEST_F()
163 LOGE("%{public}s", e.what()); in HWTEST_F()
183 LOGE("%{public}s", e.what()); in HWTEST_F()
204 LOGE("%{public}s", e.what()); in HWTEST_F()
226 LOGE("%{public}s", e.what()); in HWTEST_F()
248 LOGE("%{public}s", e.what()); in HWTEST_F()
270 LOGE("%{public}s", e.what()); in HWTEST_F()
[all...]
/third_party/ltp/testcases/kernel/controllers/cpuset/
H A Dcpuset_regression_test.sh35 # cpuset_find_parent_first <what>
36 # Do a parent first find of <what>
39 local what=$1
41 find . -mindepth 2 -name ${what} |
46 # cpuset_find_child_first <what>
47 # Do a child first find of <what>
50 local what=$1
52 find . -mindepth 2 -name ${what} |
57 # cpuset_backup_and_update <backup_dir> <what>
58 # Create backup of the values of a specific file (<what>)
[all...]
/third_party/gn/src/gn/
H A Ddesc_builder.cc69 // Optionally, if "what" is specified while generating description, two other
121 BaseDescBuilder(const std::set<std::string>& what, in BaseDescBuilder() argument
125 : what_(what), all_(all), tree_(tree), blame_(blame) {} in BaseDescBuilder()
130 bool what(const std::string& w) const { in what() function in __anon2891::BaseDescBuilder
217 if (what(variables::kPrecompiledHeader) && in FillInPrecompiledHeader()
223 if (what(variables::kPrecompiledSource) && in FillInPrecompiledHeader()
238 ConfigDescBuilder(const Config* config, const std::set<std::string>& what) in ConfigDescBuilder() argument
239 : BaseDescBuilder(what, false, false, false), config_(config) {} in ConfigDescBuilder()
251 if (what(variables::kConfigs) && !config_->configs().empty()) { in BuildDescription()
257 if (what(variable in BuildDescription()
318 TargetDescBuilder(const Target* target, const std::set<std::string>& what, bool all, bool tree, bool blame) TargetDescBuilder() argument
919 DescriptionForTarget( const Target* target, const std::string& what, bool all, bool tree, bool blame) DescriptionForTarget() argument
932 DescriptionForConfig( const Config* config, const std::string& what) DescriptionForConfig() argument
[all...]
/third_party/FreeBSD/sys/sys/
H A Dmutex.h72 #define _mtx_assert(m, what) do { \
73 switch (what) { \
86 #define mtx_assert_(m, what, file, line) \
87 _mtx_assert((m), (what), (file), (line))
92 #define mtx_assert_(m, what, file, line) (void)0
96 #define mtx_assert(m, what) mtx_assert_(m, what, __FILE__, __LINE__)
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_scan/Mock/
H A Dmock_scan_state_machine.cpp22 void MockScanStateMachine::SendMessage(int what) in SendMessage() argument
24 WIFI_LOGD("MockScanStateMachine::SendMessage, what is %{public}d.", what); in SendMessage()
27 void MockScanStateMachine::SendMessage(int what, int arg1) in SendMessage() argument
29 WIFI_LOGD("MockScanStateMachine::SendMessage, what is %{public}d, arg1 is %{public}d.", what, arg1); in SendMessage()
32 void MockScanStateMachine::SendMessage(int what, int arg1, int arg2) in SendMessage() argument
34 WIFI_LOGD("MockScanStateMachine::SendMessage, what is %{public}d, arg1 is %{public}d, arg2 is %{public}d.", what, in SendMessage()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_ap/Mock/
H A Dmock_ap_state_machine.cpp35 void MockApStateMachine::SendMessage(int what) in SendMessage() argument
37 WIFI_LOGD("MockApStateMachine::SendMessage, what is %{public}d.", what); in SendMessage()
40 void MockApStateMachine::SendMessage(int what, int arg1) in SendMessage() argument
42 WIFI_LOGD("MockApStateMachine::SendMessage, what is %{public}d, arg1 is %{public}d.", what, arg1); in SendMessage()
45 void MockApStateMachine::SendMessage(int what, int arg1, int arg2) in SendMessage() argument
47 WIFI_LOGD("MockApStateMachine::SendMessage, what is %{public}d, arg1 is %{public}d, arg2 is %{public}d.", what, in SendMessage()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/
H A Dhfp_ag_profile_event_sender.cpp166 void HfpAgProfileEventSender::ConnectRequest(const std::string &device, int handle, int what) const in ConnectRequest()
168 HfpAgMessage msg(what); in ConnectRequest()
174 void HfpAgProfileEventSender::UpdateConnectState(const std::string &device, int what) const in UpdateConnectState()
176 HfpAgMessage msg(what); in UpdateConnectState()
181 void HfpAgProfileEventSender::ScoConnectRequest(const std::string &device, int what, uint8_t linkType) const in ScoConnectRequest() argument
183 HfpAgMessage msg(what); in ScoConnectRequest()
189 void HfpAgProfileEventSender::UpdateScoConnectState(const std::string &device, int what) const in UpdateScoConnectState()
191 HfpAgMessage msg(what); in UpdateScoConnectState()
196 void HfpAgProfileEventSender::GetResponseHoldState(const std::string &device, int what) const in GetResponseHoldState()
198 HfpAgMessage msg(what); in GetResponseHoldState()
204 SetResponseHoldState(const std::string &device, int what, int btrh) const SetResponseHoldState() argument
[all...]
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/device/
H A Ddevice_manager_agent_test.cpp113 LOGE("Error:%{public}s", e.what()); in HWTEST_F()
143 GTEST_LOG_(INFO) << e.what(); in HWTEST_F()
165 LOGE("Error:%{public}s", e.what()); in HWTEST_F()
188 LOGE("Error:%{public}s", e.what()); in HWTEST_F()
210 LOGE("Error:%{public}s", e.what()); in HWTEST_F()
235 GTEST_LOG_(INFO) << e.what(); in HWTEST_F()
280 GTEST_LOG_(INFO) << e.what(); in HWTEST_F()
321 GTEST_LOG_(INFO) << e.what(); in HWTEST_F()
342 LOGE("Error:%{public}s", e.what()); in HWTEST_F()
383 LOGE("Error:%{public}s", e.what()); in HWTEST_F()
[all...]
/foundation/communication/dsoftbus/tests/core/common/message_handler/unittest/
H A Dmessage_handler_test.c33 COMM_LOGI(COMM_TEST, "NetworkingHandleMessage msg what=%{public}d", msg->what); in NetworkingHandleMessage()
42 COMM_LOGI(COMM_TEST, "CustomfreeMessage msg=%{public}d", msg->what); in CustomfreeMessage()
43 if (msg->what == CASE_FOUR_POST_DELAY) { in CustomfreeMessage()
59 msg->what = CASE_ONE_WHAT; in TestMessageHandler()
69 msg4->what = CASE_FOUR_WHAT; in TestMessageHandler()
85 msg3->what = CASE_THREE_WHAT; in TestMessageHandler()
96 msg2->what = CASE_TWO_WHAT; in TestMessageHandler()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-debug.hh121 _hb_debug_msg_va (const char *what,
130 _hb_debug_msg_va (const char *what, in _hb_debug_msg_va() argument
142 fprintf (stderr, "%-10s", what ? what : ""); in _hb_debug_msg_va()
179 _hb_debug_msg_va<0> (const char *what HB_UNUSED, in _hb_debug_msg_va()
189 _hb_debug_msg (const char *what,
198 _hb_debug_msg (const char *what, in _hb_debug_msg() argument
209 _hb_debug_msg_va<max_level> (what, obj, func, indented, level, level_dir, message, ap); in _hb_debug_msg()
213 _hb_debug_msg<0> (const char *what HB_UNUSED,
222 _hb_debug_msg<0> (const char *what HB_UNUSE
319 const char *what; global() member
[all...]
/foundation/communication/wifi/wifi/test/fuzztest/fuzz_common_func/
H A Dmock_wifi_ap_service.cpp79 void MockApStateMachine::SendMessage(int what) in SendMessage() argument
81 WIFI_LOGD("MockApStateMachine::SendMessage, what is %{public}d.", what); in SendMessage()
84 void MockApStateMachine::SendMessage(int what, int arg1) in SendMessage() argument
86 WIFI_LOGD("MockApStateMachine::SendMessage, what is %{public}d, arg1 is %{public}d.", what, arg1); in SendMessage()
89 void MockApStateMachine::SendMessage(int what, int arg1, int arg2) in SendMessage() argument
91 WIFI_LOGD("MockApStateMachine::SendMessage, what is %{public}d, arg1 is %{public}d, arg2 is %{public}d.", in SendMessage()
92 what, arg1, arg2); in SendMessage()

Completed in 9 milliseconds

12345678910>>...29