Searched defs:LowpanCredential (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/net/lowpan/libandroid_net_lowpan/include/android/net/lowpan/
H A DLowpanCredential.h31 * C++ implementation of the Java class android.net.lowpan.LowpanCredential
33 class LowpanCredential : public Parcelable { class in namespace:android::net::lowpan
38 LowpanCredential();
39 virtual ~LowpanCredential() = default;
40 LowpanCredential(const LowpanCredential& x) = default;
42 static status_t initMasterKey(LowpanCredential& out, const std::vector<uint8_t>& masterKey, int32_t masterKeyIndex);
43 static status_t initMasterKey(LowpanCredential& out, const std::vector<uint8_t>& masterKey);
44 static status_t initMasterKey(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen, int32_t masterKeyIndex);
45 static status_t initMasterKey(LowpanCredential
[all...]
/frameworks/base/lowpan/java/android/net/lowpan/
H A DLowpanCredential.java31 public class LowpanCredential implements Parcelable { class in inherits:Parcelable
38 LowpanCredential() {} method in class:LowpanCredential
40 private LowpanCredential(byte[] masterKey, int keyIndex) { method in class:LowpanCredential
44 private LowpanCredential(byte[] masterKey) { method in class:LowpanCredential
48 public static LowpanCredential createMasterKey(byte[] masterKey) {
49 return new LowpanCredential(masterKey);
52 public static LowpanCredential createMasterKey(byte[] masterKey, int keyIndex) {
53 return new LowpanCredential(masterKey, keyIndex);
90 sb.append("<LowpanCredential");
110 sb.append("<LowpanCredential");
[all...]
/frameworks/opt/net/lowpan/libandroid_net_lowpan/
H A DLowpanCredential.cpp17 #define LOG_TAG "LowpanCredential"
19 #include <android/net/lowpan/LowpanCredential.h>
31 using android::net::lowpan::LowpanCredential;
49 LowpanCredential::LowpanCredential() : mMasterKeyIndex(UNSPECIFIED_MASTER_KEY_INDEX) { } function in class:android::net::lowpan::LowpanCredential
51 status_t LowpanCredential::initMasterKey(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen, int masterKeyIndex)
68 status_t LowpanCredential::initMasterKey(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen)
70 return LowpanCredential
[all...]

Completed in 104 milliseconds