Lines Matching refs:Delegate
41 // Delegate interface is used to handle incoming requests and confirmations
43 class Delegate {
45 Delegate() = default;
46 virtual ~Delegate() = default;
74 // immediately as this is a "Prepared Write Request". Instead, the Delegate
90 // immediately as this is a "Prepared Write Request". Instead, the Delegate
101 // is true, then the Delegate should commit all previously prepared writes.
102 // Otherwise, all prepared writes should be aborted. The Delegate should
110 DISALLOW_COPY_AND_ASSIGN(Delegate);
116 // Assigns a delegate to this instance. |delegate| must out-live this
118 void SetDelegate(Delegate* delegate);
170 // Delegate callbacks. |value| and |offset| are used for read requests and
355 // Raw handle to the Delegate, which must outlive this GattServer instance.
356 Delegate* delegate_;