Home
last modified time | relevance | path

Searched refs:z_ (Results 1 – 3 of 3) sorted by relevance

/system/extras/simpleperf/scripts/
Dpylintrc7 function-rgx=[a-z_][a-z0-9_]{2,50}$
8 method-rgx=[a-z_][a-z0-9_]{2,50}$
9 variable-rgx=[a-z_][a-z0-9_]{0,30}$
10 attr-rgx=[a-z_][a-z0-9_]{0,30}$
11 argument-rgx=[a-z_][a-z0-9_]{0,30}$
/system/core/fs_mgr/libsnapshot/
Dcow_decompress.cpp147 z_stream z_ = {}; member in android::snapshot::GzDecompressor
152 if (int rv = inflateInit(&z_); rv != Z_OK) { in Init()
160 inflateEnd(&z_); in ~GzDecompressor()
164 z_.next_in = reinterpret_cast<Bytef*>(const_cast<uint8_t*>(data)); in DecompressInput()
165 z_.avail_in = length; in DecompressInput()
167 while (z_.avail_in) { in DecompressInput()
169 if (z_.avail_out == 0) { in DecompressInput()
173 z_.next_out = reinterpret_cast<Bytef*>(output_buffer_); in DecompressInput()
174 z_.avail_out = output_buffer_remaining_; in DecompressInput()
178 auto avail_out = z_.avail_out; in DecompressInput()
[all …]
/system/update_engine/
Dpylintrc284 function-name-hint=[a-z_][a-z0-9_]{2,30}$
290 variable-name-hint=[a-z_][a-z0-9_]{2,30}$
302 attr-name-hint=[a-z_][a-z0-9_]{2,30}$
308 argument-name-hint=[a-z_][a-z0-9_]{2,30}$
314 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
321 inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
335 module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
344 method-name-hint=[a-z_][a-z0-9_]{2,30}$