Lines Matching defs:node
109 RemoteBinderObjects *node = NULL;
111 UTILS_DL_LIST_FOR_EACH_ENTRY(node, &g_binderList.remoteBinderObjects, RemoteBinderObjects, list)
113 if (node->binder == binderObject) {
115 return node->serviceName;
148 DBinderServiceStub *node = NULL;
149 UTILS_DL_LIST_FOR_EACH_ENTRY(node, &g_stubRegistedList.dBinderStubs, DBinderServiceStub, list)
151 if (IsSameStub(node, serviceName, deviceID, binderObject)) {
154 return node;
176 DBinderServiceStub *node = QueryDBinderStub(serviceName, deviceID, binderObject);
177 if (node != NULL) {
179 return node;
182 node = (DBinderServiceStub *)malloc(sizeof(DBinderServiceStub));
183 if (node == NULL) {
187 if (GetDBinderStub(serviceName, deviceID, binderObject, node) != ERR_NONE) {
189 free(node);
193 AddDBinderStub(node);
194 return node;
405 SessionInfo *node = NULL;
407 UTILS_DL_LIST_FOR_EACH_ENTRY(node, &g_sessionInfoList.sessionInfos, SessionInfo, list)
409 if (node->stub == stub) {
411 return node;
431 ProxyObject *node = NULL;
433 UTILS_DL_LIST_FOR_EACH_ENTRY(node, &g_proxyObjectList.proxyObject, ProxyObject, list)
435 if (node->binderObject == binderObject) {
437 return node;
626 ThreadLockInfo *node = NULL;
628 UTILS_DL_LIST_FOR_EACH_ENTRY(node, &g_threadLockInfoList.threadLocks, ThreadLockInfo, list)
630 if (node->seqNumber == seqNumber) {
632 return node;
653 DBinderServiceStub *node;
655 UTILS_DL_LIST_FOR_EACH_ENTRY(node, &g_stubRegistedList.dBinderStubs, DBinderServiceStub, list)
657 if (node->binderObject == binderObject) {