Home | History | Annotate | Download | only in gatt

Lines Matching defs:el

56         GattDbElement el = new GattDbElement();
57 el.type = TYPE_PRIMARY_SERVICE;
58 el.uuid = uuid;
59 return el;
63 GattDbElement el = new GattDbElement();
64 el.type = TYPE_SECONDARY_SERVICE;
65 el.uuid = uuid;
66 return el;
70 GattDbElement el = new GattDbElement();
71 el.type = TYPE_CHARACTERISTIC;
72 el.uuid = uuid;
73 el.properties = properties;
74 el.permissions = permissions;
75 return el;
79 GattDbElement el = new GattDbElement();
80 el.type = TYPE_DESCRIPTOR;
81 el.uuid = uuid;
82 el.permissions = permissions;
83 return el;
87 GattDbElement el = new GattDbElement();
88 el.type = TYPE_INCLUDED_SERVICE;
89 el.attributeHandle = attributeHandle;
90 return el;