Home
last modified time | relevance | path

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

/system/netd/server/
DRouteController.h56 static uint32_t getIfIndex(const char* interface) EXCLUDES(sInterfaceToTableLock);
118 static std::mutex sInterfaceToTableLock; variable
119 static std::map<std::string, uint32_t> sInterfaceToTable GUARDED_BY(sInterfaceToTableLock);
122 [[nodiscard]] static int flushRoutes(const char* interface) EXCLUDES(sInterfaceToTableLock);
125 REQUIRES(sInterfaceToTableLock);
126 … static uint32_t getRouteTableForInterface(const char *interface) EXCLUDES(sInterfaceToTableLock);
140 static void updateTableNamesFile() EXCLUDES(sInterfaceToTableLock);
DRouteController.cpp176 std::lock_guard lock(sInterfaceToTableLock); in getIfIndex()
198 std::lock_guard lock(sInterfaceToTableLock); in getRouteTableForInterface()
222 std::lock_guard lock(sInterfaceToTableLock); in updateTableNamesFile()
993 std::lock_guard lock(sInterfaceToTableLock); in flushRoutes()
1035 std::lock_guard lock(sInterfaceToTableLock); in addInterfaceToLocalNetwork()
1044 std::lock_guard lock(sInterfaceToTableLock); in removeInterfaceFromLocalNetwork()
1175 std::mutex RouteController::sInterfaceToTableLock; member in android::net::RouteController