Lines Matching refs:UniqueFdAddDeletor

7 ### OHOS::UniqueFdAddDeletor
15 class OHOS::UniqueFdAddDeletor;
22 定义上,一个UniqueFdAddDeletor对象唯一管理一个文件描述符。 文件描述符的管理权可以在不同的UniqueFdAddDeletor对象间传递,当文件描述符没有任何UniqueFdAdd…
30 … | **UniqueFdAddDeletor**()<br>无参构造UniqueFdAddDelet…
31 … | **UniqueFdAddDeletor**(const int& value)<br>构造UniqueFdA…
32 … | **UniqueFdAddDeletor**(UniqueFdAddDeletor&& rhs)<br>移动构造函数。用于文件描述…
33 … | **~UniqueFdAddDeletor**()<br>析构函数。将调用`UniqueFdAddDe…
39 | UniqueFdAddDeletor& | **operator=**(UniqueFdAddDeletor&& rhs)<br>移动赋值运算符重载函数。用于文件描述符在UniqueFdAddD…
49 | bool | **operator**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) …
50 | bool | **operator**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) …
51 …*operator!=**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局不等运算符重载函数,比较输入具体数值与输…
52 …*operator==**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局相等运算符重载函数,比较输入具体数值与输…
53 …**operator>**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局大于运算符重载函数,比较输入具体数值与输…
54 …operator>=**(const int& lhs, const UniqueFdAddDeletor< Deleter >& rhs) <br>全局大于等于运算符重载函数,比较输入具体数值与…
68 **提示**: 管理封装类UniqueFdAddDeletor在取消对当前描述符的管理,同时又没有其他管理封装类接替管理该描述符时,`Deleter::Close()`方法将被调用。