Lines Matching refs:socketName
119 void RilSapSocket::initSapSocket(const char *socketName, in initSapSocket() argument
122 if (strcmp(socketName, "sap_uim_socket1") == 0) { in initSapSocket()
123 if(!SocketExists(socketName)) { in initSapSocket()
124 addSocketToList(socketName, RIL_SOCKET_1, uimFuncs); in initSapSocket()
129 if (strcmp(socketName, "sap_uim_socket2") == 0) { in initSapSocket()
130 if(!SocketExists(socketName)) { in initSapSocket()
131 addSocketToList(socketName, RIL_SOCKET_2, uimFuncs); in initSapSocket()
137 if (strcmp(socketName, "sap_uim_socket3") == 0) { in initSapSocket()
138 if(!SocketExists(socketName)) { in initSapSocket()
139 addSocketToList(socketName, RIL_SOCKET_3, uimFuncs); in initSapSocket()
145 if (strcmp(socketName, "sap_uim_socket4") == 0) { in initSapSocket()
146 if(!SocketExists(socketName)) { in initSapSocket()
147 addSocketToList(socketName, RIL_SOCKET_4, uimFuncs); in initSapSocket()
153 void RilSapSocket::addSocketToList(const char *socketName, RIL_SOCKET_ID socketid, in addSocketToList() argument
158 if(!SocketExists(socketName)) { in addSocketToList()
159 socket = new RilSapSocket(socketName, socketid, uimFuncs); in addSocketToList()
185 bool RilSapSocket::SocketExists(const char *socketName) { in SocketExists() argument
189 if(strcmp(current->socket->name, socketName) == 0) { in SocketExists()
215 RilSapSocket::RilSapSocket(const char *socketName, in RilSapSocket() argument
218 RilSocket(socketName, socketId) { in RilSapSocket()