/cts/apps/CameraITS/tests/scene1/ |
D | test_ae_precapture_trigger.py | 41 _,fmt = its.objects.get_fastest_manual_capture_settings(props) 55 caps = cam.do_capture(manual_reqs, fmt) 62 cap = cam.do_capture(auto_req, fmt) 69 cap = cam.do_capture(auto_req, fmt) 77 caps = cam.do_capture([auto_req] * AE_FRAMES_PER_ITERATION, fmt)
|
D | test_burst_sameness_manual.py | 45 _, fmt = its.objects.get_fastest_manual_capture_settings(props) 48 w,h = fmt["width"], fmt["height"] 58 caps = cam.do_capture([req]*BURST_LEN, [fmt])
|
D | test_latching.py | 39 _,fmt = its.objects.get_fastest_manual_capture_settings(props) 64 caps = cam.do_capture(reqs, fmt)
|
/cts/suite/audio_quality/lib/src/ |
D | FileUtil.cpp | 110 bool FileUtil::doVprintf(bool fileOnly, int logLevel, const char *fmt, va_list ap) in doVprintf() argument 122 size = vsnprintf(mBuffer + start, mBufferSize - start - 2, fmt, ap); // 2 for \n\0 in doVprintf() 154 bool FileUtil::doPrintf(const char* fmt, ...) in doPrintf() argument 157 va_start(ap, fmt); in doPrintf() 158 bool result = doVprintf(false, -1, fmt, ap); in doPrintf()
|
D | Log.cpp | 41 void Log::printf(LogLevel level, const char* fmt, ...) in printf() argument 44 va_start(ap, fmt); in printf() 45 FileUtil::doVprintf(level < mLogLevel, level, fmt, ap); in printf()
|
D | Report.cpp | 66 void Report::printf(const char* fmt, ...) in printf() argument 69 va_start(ap, fmt); in printf() 70 FileUtil::doVprintf(false, -1, fmt, ap); in printf()
|
/cts/apps/CameraITS/tests/scene0/ |
D | test_unified_timestamps.py | 31 req, fmt = its.objects.get_fastest_manual_capture_settings(props) 32 cap = cam.do_capture(req, fmt) 51 cap = cam.do_capture(req, fmt)
|
D | test_capture_result_dump.py | 32 req,fmt = its.objects.get_fastest_manual_capture_settings(props) 33 cap = cam.do_capture(req, fmt)
|
D | test_param_sensitivity_burst.py | 39 _,fmt = its.objects.get_fastest_manual_capture_settings(props) 41 caps = cam.do_capture(reqs, fmt)
|
D | test_jitter.py | 39 req, fmt = its.objects.get_fastest_manual_capture_settings(props) 40 caps = cam.do_capture([req]*50, [fmt])
|
/cts/apps/CameraITS/tests/inprog/ |
D | test_burst_sameness_auto.py | 45 _, fmt = its.objects.get_fastest_manual_capture_settings(props) 46 w,h = fmt["width"], fmt["height"] 65 caps = cam.do_capture([req]*BURST_LEN, [fmt])
|
/cts/apps/CameraITS/pymodules/its/ |
D | objects.py | 155 def get_available_output_sizes(fmt, props): argument 170 fmt_configs = [cfg for cfg in configs if cfg['format'] == fmt_codes[fmt]] 240 fmt = "yuv" 241 size = get_available_output_sizes(fmt, props)[-1] 242 out_spec = {"format":fmt, "width":size[0], "height":size[1]}
|
D | device.py | 614 fmt = jsonObj['tag'][:-5] 615 bufs[fmt].append(buf) 626 for j,fmt in enumerate(formats): 630 obj["data"] = bufs[fmt][i] 633 obj["format"] = fmt
|
/cts/suite/audio_quality/lib/include/ |
D | FileUtil.h | 49 virtual bool doPrintf(const char* fmt, ...); 52 virtual bool doVprintf(bool fileOnly, int loglevel, const char *fmt, va_list ap);
|
D | Report.h | 50 void printf(const char* fmt, ...);
|
D | Log.h | 40 void printf(LogLevel level, const char* fmt, ...);
|
/cts/tests/tests/os/jni/seccomp-tests/ |
D | local-modifications-android.diff | 43 #define __TH_LOG(fmt, ...) \ 44 - fprintf(TH_LOG_STREAM, "%s:%d:%s:" fmt "\n", \ 45 + __android_log_print(ANDROID_LOG_ERROR, "SeccompBpfTest-KernelUnit", "%s:%d:%s:" fmt "\n", \
|
/cts/tests/tests/os/jni/seccomp-tests/tests/ |
D | test_harness.h | 205 #define _TH_LOG(fmt, ...) do { \ argument 207 __TH_LOG(fmt, ##__VA_ARGS__); \ 212 #define __TH_LOG(fmt, ...) \ argument 213 __android_log_print(ANDROID_LOG_ERROR, "SeccompBpfTest-KernelUnit", "%s:%d:%s:" fmt "\n", \
|
/cts/tests/tests/security/jni/ |
D | android_security_cts_SELinuxTest.cpp | 112 static int log_callback(int type __attribute__((unused)), const char *fmt __attribute__((unused)), … in log_callback() argument
|
/cts/tools/utils/ |
D | monsoon.py | 265 def _SendStruct(self, fmt, *args): argument 267 data = struct.pack(fmt, *args)
|
/cts/apps/CameraITS/tests/sensor_fusion/ |
D | test_sensor_fusion.py | 340 fmt = {"format":"yuv", "width":W, "height":H} 345 caps = cam.do_capture([req]*N, fmt)
|
/cts/apps/CtsVerifier/assets/scripts/power_monitors/ |
D | monsoon.py | 386 def _SendStruct(self, fmt, *args): argument 388 data = struct.pack(fmt, *args)
|
/cts/tests/tests/media/src/android/media/cts/ |
D | AdaptivePlaybackTest.java | 352 MediaFormat fmt = stepFormat(); in addTests() 353 MediaFormat configFmt = fmt; in addTests() 356 configFmt = Media.removeCSD(fmt); in addTests() 364 decoder.queueCSD(fmt); in addTests()
|
D | VideoEncoderTest.java | 196 MediaFormat fmt = mExtractor.getTrackFormat(i); in open() local 197 String mime = fmt.getString(MediaFormat.KEY_MIME).toLowerCase(); in open() 200 mDecFormat = fmt; in open()
|