Home
last modified time | relevance | path

Searched refs:method (Results 1 – 6 of 6) sorted by relevance

/system/vold/
DVolumeManager.h83 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);
DVolumeManager.cpp1513 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/
Dzip_archive.h46 uint16_t method; member
/system/core/libziparchive/
Dzip_archive.cc789 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()
Dzip_archive_test.cc115 ASSERT_EQ(kCompressDeflated, data.method); in TEST()
/system/core/adb/
Dsysdeps_win32.c261 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()