OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CommandApdu
(Results
1 - 4
of
4
) sorted by null
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
CommandApdu.java
6
public class
CommandApdu
implements Parcelable {
10
public
CommandApdu
(String apdu, boolean reachable) {
28
public static final Parcelable.Creator<
CommandApdu
> CREATOR =
29
new Parcelable.Creator<
CommandApdu
>() {
31
public
CommandApdu
createFromParcel(Parcel source) {
34
return new
CommandApdu
(apdu, reachable);
38
public
CommandApdu
[] newArray(int size) {
39
return new
CommandApdu
[size];
/external/libese/libapdu/
apdu.cpp
23
CommandApdu
::
CommandApdu
(const uint8_t cla, const uint8_t ins, const uint8_t p1, const uint8_t p2,
/external/libese/libapdu/include/apdu/
apdu.h
33
class
CommandApdu
{
35
CommandApdu
(uint8_t cla, uint8_t ins, uint8_t p1, uint8_t p2)
36
:
CommandApdu
(cla, ins, p1, p2, 0, 0) {}
37
CommandApdu
(uint8_t cla, uint8_t ins, uint8_t p1, uint8_t p2, size_t lc, size_t le);
/packages/apps/SecureElement/src/com/android/se/security/
CommandApdu.java
39
public class
CommandApdu
{
49
public
CommandApdu
(int cla, int ins, int p1, int p2) {
56
public
CommandApdu
() {
59
public
CommandApdu
(int cla, int ins, int p1, int p2, byte[] data) {
68
public
CommandApdu
(int cla, int ins, int p1, int p2, byte[] data, int le) {
79
public
CommandApdu
(int cla, int ins, int p1, int p2, int le) {
184
public
CommandApdu
clone() {
185
CommandApdu
apdu = new
CommandApdu
();
Completed in 94 milliseconds