Home
last modified time | relevance | path

Searched refs:raw_output (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py248 raw_output = self._call_adb("devices").split()
249 if len(raw_output) < 5:
252 for serial_num_index in range(4, len(raw_output), 2):
253 ret.append(raw_output[serial_num_index])
305 raw_output = self._shell("ps")
306 for raw_line in raw_output.splitlines()[1:]:
/aosp12/art/dex2oat/linker/
H A Doat_writer.cc3417 uint8_t* raw_output = vdex_begin_ + oat_dex_file->dex_file_offset_; in WriteDexFile() local
3421 if (!dex_file->ExtractToMemory(raw_output, &error_msg)) { in WriteDexFile()
3433 uint8_t* raw_output = vdex_begin_ + oat_dex_file->dex_file_offset_; in WriteDexFile() local
3435 if (!dex_file->PreadFully(raw_output, oat_dex_file->dex_file_size_, /*offset=*/ 0u)) { in WriteDexFile()
3456 uint8_t* raw_output = vdex_begin_ + oat_dex_file->dex_file_offset_; in WriteDexFile() local
3457 memcpy(raw_output, dex_file, oat_dex_file->dex_file_size_); in WriteDexFile()