Home
last modified time | relevance | path

Searched refs:COMMAND (Results 1 – 5 of 5) 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_payload139 COMMAND="${1:-}"
142 case "${COMMAND}" in
168 echo "Unrecognized command: \"${COMMAND}\"" >&2
175 FLAGS_HELP="Usage: $0 ${COMMAND} [flags]
178 if [[ "${COMMAND}" == "generate" ]]; then
208 if [[ "${COMMAND}" == "hash" || "${COMMAND}" == "sign" ]]; then
213 if [[ "${COMMAND}" == "hash" ]]; then
219 if [[ "${COMMAND}" == "sign" ]]; then
231 if [[ "${COMMAND}" == "properties" ]]; then
238 if [[ "${COMMAND}" == "verify" || "${COMMAND}" == "check" ]]; then
[all …]
/system/bt/vendor_libs/test_vendor_lib/model/devices/
Dh4_packetizer.cc83 case PacketType::COMMAND: in OnPacketReady()
167 hci_packet_type_ != PacketType::COMMAND && in OnDataReady()
Dh4_packetizer.h31 COMMAND = 1, enumerator
/system/bt/vendor_libs/test_vendor_lib/test/
Dlink_layer_socket_device_test.cc101 ASSERT_EQ(Link::PacketType::COMMAND, received_view.GetType()); in ValidatePacket()