Home
last modified time | relevance | path

Searched refs:sInterfaceToTableLock (Results 1 – 2 of 2) sorted by relevance

/system/netd/server/
DRouteController.h104 static uint32_t getIfIndex(const char* interface) EXCLUDES(sInterfaceToTableLock);
182 static std::mutex sInterfaceToTableLock; variable
183 static std::map<std::string, uint32_t> sInterfaceToTable GUARDED_BY(sInterfaceToTableLock);
186 [[nodiscard]] static int flushRoutes(const char* interface) EXCLUDES(sInterfaceToTableLock);
189 REQUIRES(sInterfaceToTableLock);
190 … static uint32_t getRouteTableForInterface(const char *interface) EXCLUDES(sInterfaceToTableLock);
206 static void updateTableNamesFile() EXCLUDES(sInterfaceToTableLock);
DRouteController.cpp161 std::lock_guard lock(sInterfaceToTableLock); in getIfIndex()
183 std::lock_guard lock(sInterfaceToTableLock); in getRouteTableForInterface()
207 std::lock_guard lock(sInterfaceToTableLock); in updateTableNamesFile()
1132 std::lock_guard lock(sInterfaceToTableLock); in flushRoutes()
1174 std::lock_guard lock(sInterfaceToTableLock); in addInterfaceToLocalNetwork()
1183 std::lock_guard lock(sInterfaceToTableLock); in removeInterfaceFromLocalNetwork()
1345 std::mutex RouteController::sInterfaceToTableLock; member in android::net::RouteController