Home
last modified time | relevance | path

Searched refs:COMMAND (Results 1 – 8 of 8) sorted by relevance

/system/core/fastboot/
Dfastboot.bash51 where=COMMAND
58 if [[ $where == COMMAND && $i -ge $COMP_CWORD ]]; then
63COMMAND="continue devices erase flash flashall flashing format getvar get_staged help oem reboot s…
67 COMPREPLY=( $(compgen -W "$OPTIONS $COMMAND" -- "$cur") )
77 COMMAND)
79 COMPREPLY=( $(compgen -W "$COMMAND" -- "$cur") )
/system/update_engine/scripts/
Dbrillo_update_payload137 COMMAND="${1:-}"
140 case "${COMMAND}" in
166 echo "Unrecognized command: \"${COMMAND}\"" >&2
173 FLAGS_HELP="Usage: $0 ${COMMAND} [flags]
176 if [[ "${COMMAND}" == "generate" ]]; then
196 if [[ "${COMMAND}" == "hash" || "${COMMAND}" == "sign" ]]; then
201 if [[ "${COMMAND}" == "hash" ]]; then
207 if [[ "${COMMAND}" == "sign" ]]; then
219 if [[ "${COMMAND}" == "properties" ]]; then
226 if [[ "${COMMAND}" == "verify" || "${COMMAND}" == "check" ]]; then
[all …]
/system/core/adb/
Dadb.bash49 where=COMMAND
56 if [[ $where == COMMAND && $i -ge $COMP_CWORD ]]; then
61COMMAND="devices connect disconnect push pull sync shell emu logcat lolcat forward jdwp install un…
65 COMPREPLY=( $(compgen -W "$OPTIONS $COMMAND" -- "$cur") )
71 COMMAND)
73 COMPREPLY=( $(compgen -W "$COMMAND" -- "$cur") )
199 COMMAND=$(command adb ${args[@]} shell ls $paths '2>' /dev/null | tr -d '\r' | {
205 COMPREPLY=( $(compgen -W "$COMMAND" -- "$cur") )
Dprotocol.txt46 detail. Their format is COMMAND(arg0, arg1, payload) where the payload
/system/bt/vendor_libs/test_vendor_lib/include/
Dhci.h25 COMMAND = 1, enumerator
/system/bt/vendor_libs/test_vendor_lib/model/devices/
Dh4_protocol.cc56 case hci::PacketType::COMMAND: in OnPacketReady()
96 … hci_packet_type_ != hci::PacketType::COMMAND && hci_packet_type_ != hci::PacketType::EVENT) { in OnDataReady()
Dh4_packetizer.cc77 case hci::PacketType::COMMAND: in OnPacketReady()
119 … hci_packet_type_ != hci::PacketType::COMMAND && hci_packet_type_ != hci::PacketType::EVENT) { in OnDataReady()
/system/bt/vendor_libs/test_vendor_lib/test/
Dlink_layer_socket_device_test.cc101 ASSERT_EQ(Link::PacketType::COMMAND, received_view.GetType()); in ValidatePacket()