MCPcopy
hub / github.com/google/clusterfuzz / get_cpu_arch

Function get_cpu_arch

src/clusterfuzz/_internal/system/environment.py:223–231  ·  view source on GitHub ↗

Return cpu architecture.

()

Source from the content-addressed store, hash-verified

221
222
223def get_cpu_arch():
224 """Return cpu architecture."""
225 if is_android():
226 # FIXME: Handle this import in a cleaner way.
227 from clusterfuzz._internal.platforms import android
228 return android.settings.get_cpu_arch()
229
230 # FIXME: Add support for desktop architectures as needed.
231 return None
232
233
234def get_current_memory_tool_var():

Callers

nothing calls this directly

Calls 1

is_androidFunction · 0.85

Tested by

no test coverage detected