/external/webrtc/src/system_wrappers/source/ |
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) { in CreateListItem() argument 118 return new ListItem(item_id); in CreateListItem() 123 virtual int PushBack(const unsigned int item_id) { in PushBack() argument 124 return list_.PushBack(item_id); in PushBack() 126 virtual int PushFront(const unsigned int item_id) { in PushFront() argument 127 return list_.PushFront(item_id); in PushFront() 155 virtual ListItem* CreateListItem(unsigned int item_id) { in CreateListItem() argument [all …]
|
D | list_stl.cc | 78 int ListWrapper::PushBack(const unsigned int item_id) in PushBack() argument 80 ListItem* item = new ListItem(item_id); in PushBack() 85 int ListWrapper::PushFront(const unsigned int item_id) in PushFront() argument 87 ListItem* item = new ListItem(item_id); in PushFront()
|
D | list_no_stl.cc | 87 int ListWrapper::PushBack(const unsigned int item_id) in PushBack() argument 89 ListItem* item = new ListItem(item_id); in PushBack() 95 int ListWrapper::PushFront(const unsigned int item_id) in PushFront() argument 97 ListItem* item = new ListItem(item_id); in PushFront()
|
D | list_stl.h | 46 int PushBack(const unsigned int item_id); 48 int PushFront(const unsigned int item_id);
|
D | list_no_stl.h | 50 int PushBack(const unsigned int item_id); 52 int PushFront(const unsigned int item_id);
|
/external/libmtp/examples/ |
D | pathutils.c | 66 uint32_t item_id; in parse_path() local 70 item_id = strtoul(path, &rest, 0); in parse_path() 73 if (item_id == 0) { in parse_path() 79 return file->item_id; in parse_path() 84 return item_id; in parse_path() 87 item_id = lookup_folder_id(folders,path,""); in parse_path() 88 if (item_id == (uint32_t) -1) { in parse_path() 102 return file->item_id; in parse_path() 110 return item_id; in parse_path()
|
D | sendtr.c | 136 tracks[found_album->no_tracks-1] = trackmeta->item_id; in add_track_to_album() 144 *trackid = trackmeta->item_id; in add_track_to_album() 357 printf("New track ID: %d\n", trackmeta->item_id); in sendtrack_function()
|
D | detect.c | 211 if (file->item_id != 0) { in main() 218 file->item_id, in main()
|
D | sendfile.c | 88 printf("New file ID: %d\n", genfile->item_id); in sendfile_function()
|
D | files.c | 28 printf("File ID: %u\n", file->item_id); in dump_fileinfo()
|
D | tracks.c | 28 printf("Track ID: %u\n", track->item_id); in dump_trackinfo()
|
/external/libmtp/src/ |
D | libmtp.c | 2336 file->item_id = ob->oid; in obj2file() 2411 file->filesize = get_u64_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); in obj2file() 2413 file->filesize = get_u32_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); in obj2file() 3825 new->item_id = 0; in LIBMTP_new_file_t() 3944 file->item_id = ob->oid; in LIBMTP_Get_Filelisting_With_Callback() 4013 file->filesize = get_u64_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); in LIBMTP_Get_Filelisting_With_Callback() 4015 file->filesize = get_u32_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); in LIBMTP_Get_Filelisting_With_Callback() 4095 file->item_id = fileid; in LIBMTP_Get_Filemetadata() 4130 file->filesize = get_u64_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); in LIBMTP_Get_Filemetadata() 4132 file->filesize = get_u32_from_object(device, file->item_id, PTP_OPC_ObjectSize, 0); in LIBMTP_Get_Filemetadata() [all …]
|
D | playlist-spl.c | 221 f->item_id = 0; in playlist_t_to_spl() 236 pl->playlist_id = f->item_id; in playlist_t_to_spl() 681 while(files != NULL && files->item_id != track) { in discover_filepath_from_id() 756 id = files->item_id; in discover_id_from_filepath()
|
D | libmtp.h | 612 uint32_t item_id; /**< Unique item ID */ member 626 uint32_t item_id; /**< Unique item ID */ member
|
D | libmtp.h.in | 610 uint32_t item_id; /**< Unique item ID */ member 624 uint32_t item_id; /**< Unique item ID */ member
|
/external/webrtc/src/system_wrappers/interface/ |
D | list_wrapper.h | 54 int PushBack(const unsigned int item_id); 56 int PushFront(const unsigned int item_id);
|