OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LowpanIdentity
(Results
1 - 3
of
3
) sorted by null
/frameworks/opt/net/lowpan/libandroid_net_lowpan/include/android/net/lowpan/
LowpanIdentity.h
32
* C++ implementation of the Java class android.net.lowpan.
LowpanIdentity
34
class
LowpanIdentity
: public Parcelable {
40
LowpanIdentity
();
41
virtual ~
LowpanIdentity
() = default;
42
LowpanIdentity
(const
LowpanIdentity
& x) = default;
44
bool operator==(const
LowpanIdentity
& rhs);
45
bool operator!=(const
LowpanIdentity
& rhs) { return !(*this == rhs); }
67
class
LowpanIdentity
::Builder {
77
Builder& setLowpanIdentity(const
LowpanIdentity
& value)
[
all
...]
/frameworks/opt/net/lowpan/libandroid_net_lowpan/
LowpanIdentity.cpp
17
#define LOG_TAG "
LowpanIdentity
"
19
#include <android/net/lowpan/
LowpanIdentity
.h>
31
using android::net::lowpan::
LowpanIdentity
;
49
bool
LowpanIdentity
::getName(std::string* value) const {
55
bool
LowpanIdentity
::getType(std::string* value) const {
61
bool
LowpanIdentity
::getXpanid(std::vector<uint8_t>* value) const {
67
int32_t
LowpanIdentity
::getPanid(void) const {
70
int32_t
LowpanIdentity
::getChannel(void) const {
74
LowpanIdentity
::Builder::Builder() {
77
LowpanIdentity
::Builder& LowpanIdentity::Builder::setName(const std::string& value)
[
all
...]
/frameworks/base/lowpan/java/android/net/lowpan/
LowpanIdentity.java
36
public class
LowpanIdentity
implements Parcelable {
37
private static final String TAG =
LowpanIdentity
.class.getSimpleName();
50
final
LowpanIdentity
mIdentity = new
LowpanIdentity
();
64
public Builder setLowpanIdentity(@NonNull
LowpanIdentity
x) {
128
public
LowpanIdentity
build() {
133
LowpanIdentity
() {}
202
if (!(obj instanceof
LowpanIdentity
)) {
205
LowpanIdentity
rhs = (
LowpanIdentity
) obj
[
all
...]
Completed in 317 milliseconds