/aosp12/packages/apps/Gallery2/src/com/android/photos/data/ |
H A D | SparseArrayBitmapPool.java | 174 if (newNode == null) { in put() 175 newNode = new Node(); in put() 177 newNode.bitmap = b; in put() 181 newNode.prevInBucket = null; in put() 182 newNode.prevInPool = null; in put() 184 mPoolNodesHead = newNode; in put() 191 newNode.nextInBucket.prevInBucket = newNode; in put() 193 mStore.put(key, newNode); in put() 195 if (newNode.nextInPool == null) { in put() 197 mPoolNodesTail = newNode; in put() [all …]
|
/aosp12/hardware/st/secure_element/ese-spi-driver/utils-lib/ |
H A D | DataMgmt.cc | 84 TpduRecvBuff_List_t* newNode = NULL; in DataMgmt_StoreDataInList() local 90 if (newNode == NULL) { in DataMgmt_StoreDataInList() 93 newNode->pNext = NULL; in DataMgmt_StoreDataInList() 94 newNode->tData.len = data_len; in DataMgmt_StoreDataInList() 96 if (newNode->tData.data == NULL) { in DataMgmt_StoreDataInList() 97 free(newNode); in DataMgmt_StoreDataInList() 100 memcpy(newNode->tData.data, pbuff, data_len); in DataMgmt_StoreDataInList() 104 head = newNode; in DataMgmt_StoreDataInList() 105 current = newNode; in DataMgmt_StoreDataInList() 107 current->pNext = newNode; in DataMgmt_StoreDataInList() [all …]
|
/aosp12/frameworks/native/libs/binder/ |
H A D | MemoryDealer.cpp | 63 newNode->prev = node; in insertAfter() 64 newNode->next = node->next; in insertAfter() 67 node->next = newNode; in insertAfter() 72 newNode->next = node; in insertBefore() 75 node->prev = newNode; in insertBefore() 81 newNode->prev = newNode->next = nullptr; in insertHead() 86 mFirst = newNode; in insertHead() 92 insertHead(newNode); in insertTail() 94 newNode->prev = mLast; in insertTail() 95 newNode->next = 0; in insertTail() [all …]
|
/aosp12/hardware/nxp/secure_element/pn8x/libese-spi/p73/lib/ |
H A D | phNxpEseDataMgr.cpp | 82 phNxpEse_sCoreRecvBuff_List_t* newNode = NULL; in phNxpEse_StoreDatainList() local 84 newNode = (phNxpEse_sCoreRecvBuff_List_t*)phNxpEse_memalloc( in phNxpEse_StoreDatainList() 86 if (newNode == NULL) { in phNxpEse_StoreDatainList() 89 newNode->pNext = NULL; in phNxpEse_StoreDatainList() 90 newNode->tData.wLen = data_len; in phNxpEse_StoreDatainList() 91 phNxpEse_memcpy(newNode->tData.sbuffer, pbuff, data_len); in phNxpEse_StoreDatainList() 94 head = newNode; in phNxpEse_StoreDatainList() 95 current = newNode; in phNxpEse_StoreDatainList() 97 current->pNext = newNode; in phNxpEse_StoreDatainList() 98 current = newNode; in phNxpEse_StoreDatainList()
|
/aosp12/hardware/nxp/secure_element/snxxx/libese-spi/p73/lib/ |
H A D | phNxpEseDataMgr.cpp | 90 phNxpEse_sCoreRecvBuff_List_t* newNode = NULL; in phNxpEse_StoreDatainList() local 92 newNode = (phNxpEse_sCoreRecvBuff_List_t*)phNxpEse_memalloc( in phNxpEse_StoreDatainList() 94 if (newNode == NULL) { in phNxpEse_StoreDatainList() 98 newNode->pNext = NULL; in phNxpEse_StoreDatainList() 99 newNode->tData.wLen = data_len; in phNxpEse_StoreDatainList() 100 phNxpEse_memcpy(newNode->tData.sbuffer, pbuff, data_len); in phNxpEse_StoreDatainList() 103 head = newNode; in phNxpEse_StoreDatainList() 104 current = newNode; in phNxpEse_StoreDatainList() 106 current->pNext = newNode; in phNxpEse_StoreDatainList() 107 current = newNode; in phNxpEse_StoreDatainList()
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/ |
H A D | dic_node_priority_queue.h | 127 DicNode *newNode = mDicNodePool.getInstance(); in newDicNode() local 128 if (newNode) { in newDicNode() 129 DicNodeUtils::initByCopy(dicNode, newNode); in newDicNode() 131 return newNode; in newDicNode()
|
/aosp12/system/core/libutils/include/utils/ |
H A D | List.h | 215 _Node* newNode = new _Node(val); // alloc & copy-construct in insert() local 216 newNode->setNext(posn.getNode()); in insert() 217 newNode->setPrev(posn.getNode()->getPrev()); in insert() 218 posn.getNode()->getPrev()->setNext(newNode); in insert() 219 posn.getNode()->setPrev(newNode); in insert() 220 return iterator(newNode); in insert()
|
/aosp12/system/keymaster/include/keymaster/ |
H A D | List.h | 191 _Node* newNode = new (std::nothrow) _Node(val); // alloc & copy-construct in insert() local 192 newNode->setNext(posn.getNode()); in insert() 193 newNode->setPrev(posn.getNode()->getPrev()); in insert() 194 posn.getNode()->getPrev()->setNext(newNode); in insert() 195 posn.getNode()->setPrev(newNode); in insert() 196 return iterator(newNode); in insert()
|
/aosp12/build/soong/cmd/fileslist/ |
H A D | fileslist.go | 58 func newNode(hostPath string, devicePath string, stat os.FileInfo) Node { func 144 ch <- newNode(absPath, devicePath, stat)
|
/aosp12/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/ |
H A D | LockFindingClassVisitor.java | 241 TryCatchBlockNode newNode = in updateCatchHandler() local 243 newNodes.add(newNode); in updateCatchHandler() 248 handlersMap.get(i).add(newNode); in updateCatchHandler()
|
/aosp12/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
H A D | FusionDictionary.java | 379 final PtNode newNode = new PtNode( in add() local 384 currentPtNode.mChildren.mData.add(newNode); in add()
|
/aosp12/packages/apps/Messaging/build/gcheckstyle/ |
H A D | google-style-checker_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |
/aosp12/art/build/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o-low-priority.txt | 5544 Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$CI;->newNode(Ljava/lang/String;Ljava/lang/Str… 5549 Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$LENIENT;->newNode(Ljava/lang/String;Ljava/lan… 5561 Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;->newNode(Ljava/lang/String;Ljava/lang/String… 7180 Ljava/util/concurrent/ConcurrentLinkedQueue;->newNode(Ljava/lang/Object;)Ljava/util/concurrent/Conc… 8676 Ljava/util/HashMap;->newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/ut… 8927 Ljava/util/LinkedHashMap;->newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Lj…
|
/aosp12/art/build/boot/ |
H A D | boot-image-profile.txt | 5532 HSPLjava/util/HashMap;->newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava… 5710 HSPLjava/util/LinkedHashMap;->newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;… 6512 HSPLjava/util/concurrent/ConcurrentLinkedQueue;->newNode(Ljava/lang/Object;)Ljava/util/concurrent/C…
|
/aosp12/packages/apps/TV/libs/m2/ |
H A D | guava-28.0-android.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
H A D | guava-28.0-jre.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/aosp12/packages/apps/TV/libs/ |
H A D | google-java-format-1.7-all-deps.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/aosp12/frameworks/base/config/ |
H A D | boot-image-profile.txt | 28138 HSPLjava/util/HashMap;->newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava… 28316 HSPLjava/util/LinkedHashMap;->newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;… 29118 HSPLjava/util/concurrent/ConcurrentLinkedQueue;->newNode(Ljava/lang/Object;)Ljava/util/concurrent/C…
|
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | android-22.txt | 50698 field protected boolean newNode;
|