# Class: com.pnfsoftware.jeb.core.units.code.android.adb.AdbProcess

Represent an Android process entry, also a parser of `ps` output.

## Constructor: AdbProcess


## Method: getName
- return type: `java.lang.String`

Description: Retrieve the process name.
return: process name

## Method: getPid
- return type: `int`

Description: Retrieve the process id.
return: process id

## Method: getUser
- return type: `java.lang.String`

Description: Retrieve the process user.
return: process user

## Method: toString
- return type: `java.lang.String`


## Static Method: parsePsData
- parameter: `data`, type: `byte[]`
- return type: `java.util.List<com.pnfsoftware.jeb.core.units.code.android.adb.AdbProcess>`

Description: Parse the result of \`ps\` execution on an Android devide.
parameter: data: \`ps\` output data encoded with the local machine charset
return: a list of process entries

