HomeSort by relevance Sort by last modified time
    Searched refs:pList (Results 1 - 25 of 34) sorted by null

1 2

  /external/mdnsresponder/mDNSShared/
GenLinkedList.c 37 void InitLinkedList( GenLinkedList *pList, size_t linkOffset)
38 /* Initialize the block of memory pointed to by pList as a linked list. */
40 pList->Head = NULL;
41 pList->Tail = NULL;
42 pList->LinkOffset = linkOffset;
46 void AddToTail( GenLinkedList *pList, void *elem)
49 if ( pList->Tail) {
50 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset);
52 pList->Head = elem
    [all...]
GenLinkedList.h 34 void InitLinkedList( GenLinkedList *pList, size_t linkOffset);
36 void AddToHead( GenLinkedList *pList, void *elem);
37 void AddToTail( GenLinkedList *pList, void *elem);
39 int RemoveFromList( GenLinkedList *pList, void *elem);
41 int ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem);
55 void InitDoubleLinkedList( GenDoubleLinkedList *pList, size_t fwdLinkOffset,
58 void DLLAddToHead( GenDoubleLinkedList *pList, void *elem);
60 void DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem);
76 void InitLinkedOffsetList( GenLinkedOffsetList *pList, size_t linkOffset);
78 void *GetHeadPtr( GenLinkedOffsetList *pList);
    [all...]
  /hardware/intel/img/psb_video/src/hwdefs/
dma_api.h 231 @Input pList : pointer to start of linked list entry
242 #define DMA_LL_SET_WD0(pList, BSWAP, DIR, PW) \
244 MEMIO_WRITE_FIELD(pList, DMAC_LL_BSWAP, BSWAP); \
245 MEMIO_WRITE_FIELD(pList, DMAC_LL_DIR, DIR); \
246 MEMIO_WRITE_FIELD(pList, DMAC_LL_PW, PW); \
259 @Input pList : pointer to start of linked list entry
270 #define DMA_LL_SET_WD1(pList, INCR, PI, LEN) \
272 MEMIO_WRITE_FIELD(pList, DMAC_LL_PI, PI); \
273 MEMIO_WRITE_FIELD(pList, DMAC_LL_INCR, INCR); \
274 MEMIO_WRITE_FIELD(pList, DMAC_LL_LEN, LEN);
    [all...]
  /system/nfc/halimpl/pn54x/utils/
phNxpNciHal_utils.c 42 int listInit(struct listHead* pList) {
43 pList->pFirst = NULL;
44 if (pthread_mutex_init(&pList->mutex, NULL) == -1) {
61 int listDestroy(struct listHead* pList) {
64 bListNotEmpty = listGetAndRemoveNext(pList, NULL);
67 if (pthread_mutex_destroy(&pList->mutex) == -1) {
84 int listAdd(struct listHead* pList, void* pData) {
99 pthread_mutex_lock(&pList->mutex);
102 if (pList->pFirst == NULL) {
104 pList->pFirst = pNode
    [all...]
phNxpNciHal_utils.h 72 int listInit(struct listHead* pList);
73 int listDestroy(struct listHead* pList);
74 int listAdd(struct listHead* pList, void* pData);
75 int listRemove(struct listHead* pList, void* pData);
76 int listGetAndRemoveNext(struct listHead* pList, void** ppData);
77 void listDump(struct listHead* pList);
  /external/pdfium/core/fpdfdoc/
cpdf_linklist.h 30 void LoadPageLinks(CPDF_Page* pPage, std::vector<CPDF_Dictionary*>* pList);
cpdf_linklist.cpp 57 std::vector<CPDF_Dictionary*>* pList) {
66 pList->push_back(add_link ? pAnnot : nullptr);
  /tools/loganalysis/src/com/android/loganalysis/util/
RegexTrie.java 147 private V validateAndPut(V value, List<CompPattern> pList) {
148 if (pList.size() == 0) {
151 return recursivePut(value, pList);
162 List<CompPattern> pList = new ArrayList<CompPattern>(patterns.length);
165 pList.add(null);
168 pList.add(new CompPattern(pat));
170 return validateAndPut(value, pList);
183 List<CompPattern> pList = new ArrayList<CompPattern>(regexen.length);
186 pList.add(null);
190 pList.add(new CompPattern(pat))
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
RegexTrie.java 144 * @param pList The sequence of {@link CompPattern}s that must be sequentially matched to
147 private V validateAndPut(V value, List<CompPattern> pList) {
148 if (pList.size() == 0) {
151 return recursivePut(value, pList);
162 List<CompPattern> pList = new ArrayList<CompPattern>(patterns.length);
165 pList.add(null);
168 pList.add(new CompPattern(pat));
170 return validateAndPut(value, pList);
183 List<CompPattern> pList = new ArrayList<CompPattern>(regexen.length);
186 pList.add(null)
    [all...]
  /external/zlib/src/
zlib2ansi 58 my %pList = map { $_ => $i++ }
60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
  /prebuilts/go/darwin-x86/src/cmd/asm/
main.go 66 pList := obj.Linknewplist(ctxt)
67 pList.Firstpc, ok = parser.Parse()
  /prebuilts/go/linux-x86/src/cmd/asm/
main.go 66 pList := obj.Linknewplist(ctxt)
67 pList.Firstpc, ok = parser.Parse()
  /dalvik/libdex/
DexFile.h 793 DEX_INLINE const DexTypeItem* dexGetTypeItem(const DexTypeList* pList,
796 assert(idx < pList->size);
797 return &pList->list[idx];
800 DEX_INLINE u4 dexTypeListGetIdx(const DexTypeList* pList, u4 idx) {
801 const DexTypeItem* pItem = dexGetTypeItem(pList, idx);
1014 const DexAnnotationSetRefList* pList, u4 idx)
1016 assert(idx < pList->size);
1017 return &pList->list[idx];
    [all...]
  /external/pdfium/xfa/fde/css/
cfde_cssstyleselector.h 78 uint32_t ToTextDecoration(const CFX_RetainPtr<CFDE_CSSValueList>& pList);
cfde_cssdeclaration.cpp 402 auto pList = pdfium::MakeRetain<CFDE_CSSValueList>(list);
403 AddPropertyHolder(pTable->eName, pList, bImportant);
632 auto pList = pdfium::MakeRetain<CFDE_CSSValueList>(familyList);
633 AddPropertyHolder(FDE_CSSProperty::FontFamily, pList, bImportant);
cfde_cssstyleselector.cpp 399 CFX_RetainPtr<CFDE_CSSValueList> pList = pValue.As<CFDE_CSSValueList>();
400 int32_t iCount = pList->CountValues();
404 pComputedStyle->m_InheritedData.m_pFontFamily = pList;
408 ToTextDecoration(pList);
  /external/pdfium/xfa/fxfa/fm2js/
xfa_expression.h 106 CXFA_FMDoExpression(uint32_t line, std::unique_ptr<CXFA_FMExpression> pList);
180 std::unique_ptr<CXFA_FMExpression> pList);
202 std::unique_ptr<CXFA_FMExpression> pList);
xfa_expression.cpp 228 std::unique_ptr<CXFA_FMExpression> pList)
229 : CXFA_FMExpression(line), m_pList(std::move(pList)) {}
378 std::unique_ptr<CXFA_FMExpression> pList)
385 m_pList(std::move(pList)) {}
493 std::unique_ptr<CXFA_FMExpression> pList)
497 m_pList(std::move(pList)) {}
  /external/guice/core/test/com/google/inject/
ProvisionListenerTest.java 557 final List<Class<?>> pList = Lists.newArrayList();
575 bindListener(keyMatcher(Instance.class), new ChainAsserter(pList, chain.build()));
578 bindListener(keyMatcher(A.class), new ChainAsserter(pList, chain.build()));
581 bindListener(keyMatcher(BImpl.class), new ChainAsserter(pList, chain.build()));
584 bindListener(keyMatcher(C.class), new ChainAsserter(pList, chain.build()));
589 bindListener(keyMatcher(D.class), new ChainAsserter(pList, chain.build()));
590 bindListener(keyMatcher(DP.class), new ChainAsserter(pList, chain.build()));
593 bindListener(keyMatcher(E.class), new ChainAsserter(pList, chain.build()));
596 bindListener(keyMatcher(F.class), new ChainAsserter(pList, chain.build()));
606 pList);
    [all...]
  /external/pdfium/fpdfsdk/pdfwindow/
PWL_ListBox.h 25 explicit CPWL_List_Notify(CPWL_ListBox* pList);
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
endtoend_test.go 34 pList := obj.Linknewplist(ctxt)
44 pList.Firstpc, ok = parser.Parse()
176 top := pList.Firstpc
272 pList := obj.Linknewplist(ctxt)
287 pList.Firstpc, ok = parser.Parse()
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
endtoend_test.go 34 pList := obj.Linknewplist(ctxt)
44 pList.Firstpc, ok = parser.Parse()
176 top := pList.Firstpc
272 pList := obj.Linknewplist(ctxt)
287 pList.Firstpc, ok = parser.Parse()
  /external/pdfium/xfa/fxfa/parser/
cxfa_scriptcontext.h 43 void AddToCacheList(std::unique_ptr<CXFA_NodeList> pList);
  /external/tpm2/
RSAKeySieve.c 513 UINT32 pList[8];
516 pList[i--] = composite;
520 pList[i] = next;
527 next = pList[i];
  /external/pdfium/core/fpdfapi/page/
cpdf_docpagedata.cpp 240 CPDF_Dictionary* pList = pResources->GetDictFor("ColorSpace");
241 if (pList) {
243 return GetColorSpaceImpl(pList->GetDirectObjectFor(name), nullptr,

Completed in 492 milliseconds

1 2