Searched refs:method (Results 1 – 6 of 6) sorted by relevance
/system/vold/ |
D | VolumeManager.h | 83 int shareVolume(const char *label, const char *method); 84 int unshareVolume(const char *label, const char *method); 85 int shareEnabled(const char *path, const char *method, bool *enabled);
|
D | VolumeManager.cpp | 1513 int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) { in shareEnabled() argument 1521 if (strcmp(method, "ums")) { in shareEnabled() 1534 int VolumeManager::shareVolume(const char *label, const char *method) { in shareVolume() argument 1547 if (strcmp(method, "ums")) { in shareVolume() 1617 int VolumeManager::unshareVolume(const char *label, const char *method) { in unshareVolume() argument 1625 if (strcmp(method, "ums")) { in unshareVolume()
|
/system/core/include/ziparchive/ |
D | zip_archive.h | 46 uint16_t method; member
|
/system/core/libziparchive/ |
D | zip_archive.cc | 789 data->method = cdr->compression_method; in FindEntry() 880 if (data->method == kCompressStored && in FindEntry() 1082 const uint16_t method = entry->method; in ExtractToMemory() local 1093 if (method == kCompressStored) { in ExtractToMemory() 1095 } else if (method == kCompressDeflated) { in ExtractToMemory()
|
D | zip_archive_test.cc | 115 ASSERT_EQ(kCompressDeflated, data.method); in TEST()
|
/system/core/adb/ |
D | sysdeps_win32.c | 261 DWORD method; in _fh_file_lseek() local 266 case SEEK_SET: method = FILE_BEGIN; break; in _fh_file_lseek() 267 case SEEK_CUR: method = FILE_CURRENT; break; in _fh_file_lseek() 268 case SEEK_END: method = FILE_END; break; in _fh_file_lseek() 274 result = SetFilePointer( f->fh_handle, pos, NULL, method ); in _fh_file_lseek()
|