Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/hardware/google/graphics/common/hwc3/
DComposerCommandEngine.cpp67 for (const auto& command : commands) { in execute() local
68 dispatchDisplayCommand(command); in execute()
72 if (command.validateDisplay || command.presentDisplay || in execute()
73 command.presentOrValidateDisplay) { in execute()
74 displaysPendingBrightenssChange.erase(command.display); in execute()
75 } else if (command.brightness) { in execute()
76 displaysPendingBrightenssChange.insert(command.display); in execute()
93 void ComposerCommandEngine::dispatchDisplayCommand(const DisplayCommand& command) { in dispatchDisplayCommand() argument
96 DISPATCH_DISPLAY_COMMAND(command, brightness, SetDisplayBrightness); in dispatchDisplayCommand()
97 for (const auto& layerCmd : command.layers) { in dispatchDisplayCommand()
[all …]
/hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/test/
DREADME.txt1 1 To run this suite separately(each test case creates table and delete table) use below command
2 - To execute test suite nt times with n entries, command "ipanatest sep nt n"
4 Example: To execute test suite 1 time with 100 entries, command "ipanattest sep 100"
7 2. To run test suite not separately(creates table and delete table only once) use below command
8 - To execute test suite nt times with n entries, command "ipanatest reg nt n"
10 Example: To execute test suite 5 times with 32 entries, command "ipanattest reg 5 32"
13 3. To run inotify regression test use command, "ipanattest inotify nt"
15 Example: To execute inotify 5 times, command "ipanattest inotify 5"
18 4. if we just give command "ipanattest", runs test suite 1 time with 100 entries (non separate)
/hardware/qcom/sm8150/data/ipacfg-mgr/ipanat/test/
DREADME.txt1 1 To run this suite separately(each test case creates table and delete table) use below command
2 - To execute test suite nt times with n entries, command "ipanatest sep nt n"
4 Example: To execute test suite 1 time with 100 entries, command "ipanattest sep 100"
7 2. To run test suite not separately(creates table and delete table only once) use below command
8 - To execute test suite nt times with n entries, command "ipanatest reg nt n"
10 Example: To execute test suite 5 times with 32 entries, command "ipanattest reg 5 32"
13 3. To run inotify regression test use command, "ipanattest inotify nt"
15 Example: To execute inotify 5 times, command "ipanattest inotify 5"
18 4. if we just give command "ipanattest", runs test suite 1 time with 100 entries (non separate)
/hardware/qcom/sdm845/data/ipacfg-mgr/ipanat/test/
DREADME.txt1 1 To run this suite separately(each test case creates table and delete table) use below command
2 - To execute test suite nt times with n entries, command "ipanatest sep nt n"
4 Example: To execute test suite 1 time with 100 entries, command "ipanattest sep 100"
7 2. To run test suite not separately(creates table and delete table only once) use below command
8 - To execute test suite nt times with n entries, command "ipanatest reg nt n"
10 Example: To execute test suite 5 times with 32 entries, command "ipanattest reg 5 32"
13 3. To run inotify regression test use command, "ipanattest inotify nt"
15 Example: To execute inotify 5 times, command "ipanattest inotify 5"
18 4. if we just give command "ipanattest", runs test suite 1 time with 100 entries (non separate)
/hardware/interfaces/gnss/common/utils/default/
DDeviceFileReader.cpp23 void DeviceFileReader::getDataFromDeviceFile(const std::string& command, int mMinIntervalMs) { in getDataFromDeviceFile() argument
26 if (command == CMD_GET_LOCATION) { in getDataFromDeviceFile()
28 } else if (command == CMD_GET_RAWMEASUREMENT) { in getDataFromDeviceFile()
39 if (write(gnss_fd, command.c_str(), command.size()) <= 0) { in getDataFromDeviceFile()
92 if (command == CMD_GET_LOCATION) { in getDataFromDeviceFile()
95 } else if (command == CMD_GET_RAWMEASUREMENT) { in getDataFromDeviceFile()
/hardware/ril/reference-ril/
Datchannel.h90 int at_send_command_singleline (const char *command,
94 int at_send_command_numeric (const char *command,
97 int at_send_command_multiline (const char *command,
104 int at_send_command (const char *command, ATResponse **pp_outResponse);
106 int at_send_command_sms (const char *command, const char *pdu,
Datchannel.c672 static int at_send_command_full_nolock (const char *command, ATCommandType type, in at_send_command_full_nolock() argument
684 err = writeline (command); in at_send_command_full_nolock()
739 static int at_send_command_full (const char *command, ATCommandType type, in at_send_command_full() argument
751 err = at_send_command_full_nolock(command, type, in at_send_command_full()
774 int at_send_command (const char *command, ATResponse **pp_outResponse) in at_send_command() argument
778 err = at_send_command_full (command, NO_RESULT, NULL, in at_send_command()
785 int at_send_command_singleline (const char *command, in at_send_command_singleline() argument
791 err = at_send_command_full (command, SINGLELINE, responsePrefix, in at_send_command_singleline()
808 int at_send_command_numeric (const char *command, in at_send_command_numeric() argument
813 err = at_send_command_full (command, NUMERIC, NULL, in at_send_command_numeric()
[all …]
/hardware/interfaces/graphics/composer/2.1/utils/vts/
DTestCommandReader.cpp32 int32_t command; in parse() local
34 ASSERT_TRUE(beginCommand(&command, &length)); in parse()
36 parseSingleCommand(command, length); in parse()
43 IComposerClient::Command command = static_cast<IComposerClient::Command>(commandRaw); in parseSingleCommand() local
45 switch (command) { in parseSingleCommand()
89 GTEST_FAIL() << "unexpected return command " << std::hex << static_cast<int>(command); in parseSingleCommand()
/hardware/interfaces/automotive/can/1.0/default/libnetdevice/
Dethtool.cpp25 std::optional<uint32_t> getValue(const std::string& ifname, uint32_t command) { in getValue() argument
27 valueop.cmd = command; in getValue()
36 bool setValue(const std::string& ifname, uint32_t command, uint32_t value) { in setValue() argument
38 valueop.cmd = command; in setValue()
/hardware/qcom/display/msm8909w_3100/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/qcom/sdm845/display/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/qcom/display/msm8998/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/qcom/display/msm8994/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
DQService.cpp57 status_t QService::dispatch(uint32_t command, const Parcel* inParcel, in dispatch() argument
65 ALOGD_IF(QSERVICE_DEBUG, "Dispatching command: %d", command); in dispatch()
66 err = mClient->notifyCallback(command, inParcel, outParcel); in dispatch()
/hardware/qcom/display/msm8909/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/qcom/display/msm8084/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/qcom/display/msm8226/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
DQService.cpp57 status_t QService::dispatch(uint32_t command, const Parcel* inParcel, in dispatch() argument
65 ALOGD_IF(QSERVICE_DEBUG, "Dispatching command: %d", command); in dispatch()
66 err = mClient->notifyCallback(command, inParcel, outParcel); in dispatch()
/hardware/qcom/sm8150/display/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/qcom/display/msm8996/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/qcom/sm7250/display/libqservice/
DIQClient.cpp47 virtual status_t notifyCallback(uint32_t command, in notifyCallback() argument
53 data.writeInt32(command); in notifyCallback()
72 uint32_t command = data.readInt32(); in onTransact() local
73 notifyCallback(command, &data, reply); in onTransact()
/hardware/interfaces/graphics/composer/2.3/utils/command-buffer/
DAndroid.bp11 name: "android.hardware.graphics.composer@2.3-command-buffer",
21 "android.hardware.graphics.composer@2.2-command-buffer",
24 "android.hardware.graphics.composer@2.2-command-buffer",
/hardware/interfaces/graphics/composer/2.4/utils/command-buffer/
DAndroid.bp11 name: "android.hardware.graphics.composer@2.4-command-buffer",
21 "android.hardware.graphics.composer@2.3-command-buffer",
24 "android.hardware.graphics.composer@2.3-command-buffer",
/hardware/interfaces/graphics/composer/2.2/utils/command-buffer/
DAndroid.bp11 name: "android.hardware.graphics.composer@2.2-command-buffer",
21 "android.hardware.graphics.composer@2.1-command-buffer",
24 "android.hardware.graphics.composer@2.1-command-buffer",
/hardware/interfaces/automotive/can/1.0/default/libnetdevice/include/libnetdevice/
Dethtool.h32 std::optional<uint32_t> getValue(const std::string& ifname, uint32_t command);
43 bool setValue(const std::string& ifname, uint32_t command, uint32_t value);

12345678910>>...13