/packages/apps/Nfc/jni/ |
com_android_nfc_list.h | 38 bool listInit(listHead* pList); 39 bool listDestroy(listHead* pList); 40 bool listAdd(listHead* pList, void* pData); 41 bool listRemove(listHead* pList, void* pData); 42 bool listGetAndRemoveNext(listHead* pList, void** ppData); 43 void listDump(listHead* pList);
|
com_android_nfc_list.cpp | 26 bool listInit(listHead* pList) 28 pList->pFirst = NULL; 29 if(pthread_mutex_init(&pList->mutex, NULL) == -1) 38 bool listDestroy(listHead* pList) 42 bListNotEmpty = listGetAndRemoveNext(pList, NULL); 45 if(pthread_mutex_destroy(&pList->mutex) == -1) 54 bool listAdd(listHead* pList, void* pData) 72 pthread_mutex_lock(&pList->mutex); 75 if (pList->pFirst == NULL) 78 pList->pFirst = pNode [all...] |
/hardware/ti/omap3/dspbridge/inc/ |
list.h | 108 * pList: Pointer to list control structure of list to be deleted 113 * - pList != NULL. 120 extern VOID LST_Delete(IN struct LST_LIST* pList); 142 * pList: Pointer to list control structure. 147 * - pList != NULL. 150 extern struct LST_ELEM* LST_First(IN struct LST_LIST* pList); 166 * pList: Pointer to list control structure of list whose head 174 * - pList != NULL. 181 extern struct LST_ELEM* LST_GetHead(IN struct LST_LIST* pList); 219 * pList: Pointer to list control structure [all...] |
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
list.h | 108 * pList: Pointer to list control structure of list to be deleted 113 * - pList != NULL. 120 extern VOID LST_Delete(IN struct LST_LIST* pList); 142 * pList: Pointer to list control structure. 147 * - pList != NULL. 150 extern struct LST_ELEM* LST_First(IN struct LST_LIST* pList); 166 * pList: Pointer to list control structure of list whose head 174 * - pList != NULL. 181 extern struct LST_ELEM* LST_GetHead(IN struct LST_LIST* pList); 219 * pList: Pointer to list control structure [all...] |
/dalvik/vm/ |
Sync.c | 68 static void expandObjClear(ExpandingObjectList* pList); [all...] |
/external/zlib/ |
zlib2ansi | 58 my %pList = map { $_ => $i++ } 60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ; 84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
|
/hardware/ti/wlan/wl1271/stad/src/Connection_Managment/ |
apConn.c | [all...] |
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/apConn/ |
apConn.c | [all...] |
/system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/ |
apConn.c | [all...] |
/external/webkit/WebKit/mac/Plugins/ |
WebBasePluginPackage.mm | 214 NSDictionary *pList = nil; 217 pList = [NSPropertyListSerialization propertyListFromData:data 223 return pList; 234 // Check if the MIME types are claimed in a plist in the user's preferences directory. 237 NSDictionary *pList = [self pListForPath:pListPath createFile:NO]; 238 if (pList) { 239 // If the plist isn't localized, have the plug-in recreate it in the preferred language. 240 NSString *localizationName = [pList objectForKey:WebPluginLocalizationNameKey]; 242 pList = [self pListForPath:pListPath createFile:YES]; 243 MIMETypes = [pList objectForKey:WebPluginMIMETypesKey] [all...] |
/dalvik/libdex/ |
DexFile.h | 683 DEX_INLINE const DexTypeItem* dexGetTypeItem(const DexTypeList* pList, 686 assert(idx < pList->size); 687 return &pList->list[idx]; 690 DEX_INLINE u4 dexTypeListGetIdx(const DexTypeList* pList, u4 idx) { 691 const DexTypeItem* pItem = dexGetTypeItem(pList, idx); 923 const DexAnnotationSetRefList* pList, u4 idx) 925 assert(idx < pList->size); 926 return &pList->list[idx]; [all...] |
/external/skia/src/animator/ |
SkDisplayApply.cpp | 438 SkTDDrawableArray* pList, * gList; 440 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList); 441 if (pList && old >= 0 && (*pList)[old]->isApply() && (*pList)[old] != this) { 444 SkDisplayable* oldChild = (*pList)[old]; 450 (*pList)[old] = scope; 452 pList->remove(old);
|
/system/wlan/ti/sta_dk_4_0_4_32/pform/common/src/ |
osUtil.c | 975 OS_802_11_NETWORK_TYPE_LIST * pList; 996 pList = (OS_802_11_NETWORK_TYPE_LIST *) pData; 1002 pList->NumberOfItems = 1; 1003 pList->NetworkType[0] = os802_11DS; 1007 pList->NumberOfItems = 1; 1008 pList->NetworkType[0] = os802_11OFDM5; 1012 pList->NumberOfItems = 2; 1013 pList->NetworkType[0] = os802_11DS; 1014 pList->NetworkType[1] = os802_11OFDM24; 1018 pList->NumberOfItems = 3 [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |
sqlite3.c.orig | [all...] |