/external/webrtc/src/system_wrappers/source/ |
H A D | list_stl.h | 46 int PushBack(const unsigned int item_id); 48 int PushFront(const unsigned int item_id);
|
H A D | list_unittest.cc | 42 virtual ListItem* CreateListItem(unsigned int item_id) = 0; 46 virtual int PushBack(const unsigned int item_id) = 0; 47 virtual int PushFront(const unsigned int item_id) = 0; 117 virtual ListItem* CreateListItem(unsigned int item_id) { argument 118 return new ListItem(item_id); 123 virtual int PushBack(const unsigned int item_id) { argument 124 return list_.PushBack(item_id); 126 virtual int PushFront(const unsigned int item_id) { argument 127 return list_.PushFront(item_id); 155 virtual ListItem* CreateListItem(unsigned int item_id) { argument 182 PushBack(const unsigned int item_id) argument 195 PushFront(const unsigned int item_id) argument 412 const unsigned int item_id = descending_list->GetUnsignedItem(item); local 458 const unsigned int item_id = ascending_list->GetUnsignedItem(item); local [all...] |
H A D | list_no_stl.h | 50 int PushBack(const unsigned int item_id); 52 int PushFront(const unsigned int item_id);
|
H A D | list_no_stl.cc | 87 int ListWrapper::PushBack(const unsigned int item_id) argument 89 ListItem* item = new ListItem(item_id); 95 int ListWrapper::PushFront(const unsigned int item_id) argument 97 ListItem* item = new ListItem(item_id);
|
H A D | list_stl.cc | 78 int ListWrapper::PushBack(const unsigned int item_id) argument 80 ListItem* item = new ListItem(item_id); 85 int ListWrapper::PushFront(const unsigned int item_id) argument 87 ListItem* item = new ListItem(item_id);
|
/external/libmtp/examples/ |
H A D | pathutils.c | 61 /* Parses a string to find item_id */ 66 uint32_t item_id; local 68 // Check if path is an item_id 70 item_id = strtoul(path, &rest, 0); 73 if (item_id == 0) { 79 return file->item_id; 84 return item_id; 87 item_id = lookup_folder_id(folders,path,""); 88 if (item_id == (uint32_t) -1) { 102 return file->item_id; [all...] |
H A D | files.c | 28 printf("File ID: %u\n", file->item_id);
|
H A D | sendfile.c | 88 printf("New file ID: %d\n", genfile->item_id);
|
H A D | tracks.c | 28 printf("Track ID: %u\n", track->item_id);
|
H A D | detect.c | 211 if (file->item_id != 0) { 218 file->item_id,
|
H A D | sendtr.c | 136 tracks[found_album->no_tracks-1] = trackmeta->item_id; 144 *trackid = trackmeta->item_id; 357 printf("New track ID: %d\n", trackmeta->item_id);
|
/external/webrtc/src/system_wrappers/interface/ |
H A D | list_wrapper.h | 54 int PushBack(const unsigned int item_id); 56 int PushFront(const unsigned int item_id);
|
/external/libmtp/src/ |
H A D | libmtp.c | 2336 file->item_id = ob->oid; 2411 file->filesize = get_u64_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); 2413 file->filesize = get_u32_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); 3825 new->item_id = 0; 3944 file->item_id = ob->oid; 4013 file->filesize = get_u64_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); 4015 file->filesize = get_u32_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); 4095 file->item_id = fileid; 4130 file->filesize = get_u64_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); 4132 file->filesize = get_u32_from_object(device, file->item_id, PTP_OPC_ObjectSiz [all...] |
H A D | playlist-spl.c | 221 f->item_id = 0; 236 pl->playlist_id = f->item_id; 681 while(files != NULL && files->item_id != track) { 756 id = files->item_id;
|
H A D | libmtp.h | 612 uint32_t item_id; /**< Unique item ID */ member in struct:LIBMTP_file_struct 626 uint32_t item_id; /**< Unique item ID */ member in struct:LIBMTP_track_struct
|
H A D | libmtp.h.in | 610 uint32_t item_id; /**< Unique item ID */ 624 uint32_t item_id; /**< Unique item ID */
|