/aosp14/frameworks/base/cmds/idmap2/idmap2/ |
H A D | Main.cpp | 40 void PrintUsage(const NameToFunctionMap& commands, std::ostream& out) { in PrintUsage() argument 42 for (auto iter = commands.cbegin(); iter != commands.cend(); iter++) { in PrintUsage() 43 if (iter != commands.cbegin()) { in PrintUsage() 55 const NameToFunctionMap commands = { in main() local 62 PrintUsage(commands, std::cerr); in main() 71 const auto iter = commands.find(argv[1]); in main() 72 if (iter == commands.end()) { in main() 74 PrintUsage(commands, std::cerr); in main()
|
/aosp14/frameworks/base/core/java/android/nfc/ |
H A D | ApduList.java | 14 private ArrayList<byte[]> commands = new ArrayList<byte[]>(); field in ApduList 20 commands.add(command); in add() 24 return commands; in get() 48 commands.add(cmd); in ApduList() 59 dest.writeInt(commands.size()); in writeToParcel() 61 for (byte[] cmd : commands) { in writeToParcel()
|
/aosp14/system/core/init/ |
H A D | init_test.cpp | 72 for (const auto& command : commands) { in TestInit() 87 TestInit(tf.path, test_function_map, commands, action_manager, service_list); in TestInitText() 107 std::vector<ActionManagerCommand> commands{trigger_boot}; in TEST() local 111 TestInitText(init_script, test_function_map, commands, &action_manager, &service_list); in TEST() 171 std::vector<ActionManagerCommand> commands{trigger_boot}; in TEST() local 517 std::vector<ActionManagerCommand> commands{trigger_boot}; in TEST() local 521 TestInit(start.path, test_function_map, commands, &action_manager, &service_list); in TEST() 578 std::vector<ActionManagerCommand> commands{trigger_boot}; in TEST() local 579 TestInit(start.path, test_function_map, commands, &action_manager, &service_list); in TEST() 607 std::vector<ActionManagerCommand> commands{trigger_boot}; in TEST() local [all …]
|
/aosp14/system/core/fastboot/ |
H A D | task_test.cpp | 44 const std::vector<std::string>& commands) { in collectTasks() argument 46 for (auto& command : commands) { in collectTasks() 62 std::vector<std::string> commands = {"flash dtbo", "flash --slot-other system system_other.img", in TEST_F() local 65 std::vector<std::unique_ptr<Task>> tasks = collectTasks(fp.get(), commands); in TEST_F()
|
/aosp14/frameworks/base/tools/preload/ |
H A D | MemoryUsage.java | 222 String[] commands = GET_DIRTY_PAGES; in measure() local 226 commandList.addAll(Arrays.asList(commands)); in measure() 228 commands = commandList.toArray(new String[commandList.size()]); in measure() 232 final Process process = Runtime.getRuntime().exec(commands); in measure() 251 + ": " + line + "; command was " + Arrays.toString(commands)); in measure()
|
/aosp14/frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/ |
H A D | FakeSettingsProvider.java | 113 String[] commands = method.split("_", 2); in call() local 114 String op = commands[0]; in call() 115 String table = commands[1]; in call()
|
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
H A D | GraphReader.java | 559 CommandStack commands = new CommandStack(context); in getBuilderForXmlString() local 560 reader.parseString(source, commands); in getBuilderForXmlString() 561 commands.execute(); in getBuilderForXmlString() 562 return commands.getBuilder(); in getBuilderForXmlString() 570 CommandStack commands = new CommandStack(context); in getBuilderForXmlResource() local 571 reader.parseInput(inputStream, commands); in getBuilderForXmlResource() 572 commands.execute(); in getBuilderForXmlResource() 573 return commands.getBuilder(); in getBuilderForXmlResource()
|
/aosp14/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/ |
H A D | EventsCommand.java | 17 package com.android.commands.uiautomator; 22 import com.android.commands.uiautomator.Launcher.Command;
|
H A D | DumpCommand.java | 17 package com.android.commands.uiautomator; 27 import com.android.commands.uiautomator.Launcher.Command;
|
/aosp14/frameworks/base/tests/testables/src/android/testing/ |
H A D | TestableSettingsProvider.java | 80 final String[] commands = method.split("_", 2); in call() local 81 final String op = commands[0]; in call() 82 final String table = commands[1]; in call()
|
/aosp14/frameworks/base/cmds/uinput/ |
H A D | README.md | 4 type `uinput -` into the terminal, then type/paste commands to send to the binary. 13 (see [InputDeviceListener][1]) notification before issuing commands 23 All of the input commands should be in pseudo-JSON format as documented below. 26 The file can have multiple commands one after the other (which is not strictly 46 Device ID is used for matching the subsequent commands to a specific device 159 commands are used in a row, the `sync` command can be used to track the progress of the command
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/utils/ |
H A D | StateMachine.java | 161 final Command[] commands = new Command[mCommands.size()]; in getCommands() local 162 mCommands.toArray(commands); in getCommands() 163 return commands; in getCommands()
|
/aosp14/frameworks/base/cmds/incident_helper/java/com/android/commands/incident/ |
H A D | IncidentHelper.java | 17 package com.android.commands.incident; 21 import com.android.commands.incident.sections.PersistLogSection;
|
H A D | ExecutionException.java | 17 package com.android.commands.incident;
|
/aosp14/system/core/fastboot/fuzzy_fastboot/ |
H A D | README.md | 17 commands. Furthermore, an untrustworthy or insecure bootloader means nothing that is 36 features and hooks for testing device specific commands/features 45 2. **Conformance** - Test the device properly handles well-formed fastboot commands 46 3. **UnlockPermissions** - Test commands only allowed in the unlocked state work 143 Vendors can extend the fastboot protocol with oem commands. This allows vendors 144 to support device/vendor specific features/commands over the fastboot protocol. 145 Fuzzy Fastboot allows testing these oem commands as well. 147 Oem commands are specefied in `<command></command>` element pairs. Each command 239 <!-- All the oem commands should be listed here --> 256 <!-- Some oem commands might require staging or downloading data, or both --> [all …]
|
/aosp14/frameworks/base/cmds/sm/ |
H A D | sm.sh | 3 exec app_process /system/bin com.android.commands.sm.Sm "$@"
|
/aosp14/frameworks/base/cmds/abx/ |
H A D | abx2xml.sh | 3 exec app_process /system/bin com.android.commands.abx.Abx "$0" "$@"
|
H A D | xml2abx.sh | 3 exec app_process /system/bin com.android.commands.abx.Abx "$0" "$@"
|
H A D | abx.sh | 3 exec app_process /system/bin com.android.commands.abx.Abx "$0" "$@"
|
/aosp14/frameworks/base/cmds/appwidget/ |
H A D | appwidget.sh | 3 exec app_process /system/bin com.android.commands.appwidget.AppWidget "$@"
|
/aosp14/frameworks/base/cmds/bmgr/ |
H A D | bmgr.sh | 3 exec app_process /system/bin com.android.commands.bmgr.Bmgr "$@"
|
/aosp14/frameworks/base/cmds/content/ |
H A D | content.sh | 3 exec app_process /system/bin com.android.commands.content.Content "$@"
|
/aosp14/frameworks/base/cmds/uinput/src/com/android/commands/uinput/ |
H A D | InputAbsInfo.aidl | 17 package src.com.android.commands.uinput;
|
/aosp14/frameworks/base/cmds/locksettings/ |
H A D | locksettings.sh | 6 exec app_process $base/bin com.android.commands.locksettings.LockSettingsCmd "$@"
|
/aosp14/frameworks/base/cmds/requestsync/ |
H A D | requestsync.sh | 6 exec app_process $base/bin com.android.commands.requestsync.RequestSync "$@"
|