Home
last modified time | relevance | path

Searched refs:th (Results 1 – 25 of 40) sorted by relevance

12

/frameworks/base/core/java/android/database/sqlite/
DSQLiteDatabaseCorruptException.java35 public static boolean isCorruptException(Throwable th) { in isCorruptException() argument
36 while (th != null) { in isCorruptException()
37 if (th instanceof SQLiteDatabaseCorruptException) { in isCorruptException()
40 th = th.getCause(); in isCorruptException()
/frameworks/base/telephony/java/android/telephony/
DTelephonyHistogram.java95 public TelephonyHistogram(TelephonyHistogram th) { in TelephonyHistogram() argument
96 mCategory = th.getCategory(); in TelephonyHistogram()
97 mId = th.getId(); in TelephonyHistogram()
98 mMinTimeMs = th.getMinTime(); in TelephonyHistogram()
99 mMaxTimeMs = th.getMaxTime(); in TelephonyHistogram()
100 mAverageTimeMs = th.getAverageTime(); in TelephonyHistogram()
101 mSampleCount = th.getSampleCount(); in TelephonyHistogram()
102 mInitialTimings = th.getInitialTimings(); in TelephonyHistogram()
103 mBucketCount = th.getBucketCount(); in TelephonyHistogram()
104 mBucketEndPoints = th.getBucketEndPoints(); in TelephonyHistogram()
[all …]
/frameworks/av/media/libstagefright/writer_fuzzers/
DREADME.md32 … All the bits of 2nd byte of data for first track and 11th byte of data for second track and 20th
33 …`0 to INT32_MAX` | All the bits of 3rd byte to 6th bytes of data if first track is audio and 12th
34 …ange `1 to INT32_MAX` | All the bits of 7th byte to 10th bytes of data if first track is audio and…
35 …`0 to INT32_MAX` | All the bits of 3rd byte to 6th bytes of data if first track is video and 12th
36 …ange `0 to INT32_MAX` | All the bits of 7th byte to 10th bytes of data if first track is video and…
/frameworks/av/media/codecs/m4v_h263/fuzzer/
DREADME.md85 …R_1` 2. `VBR_1` 3. `CBR_2` 4. `VBR_2` 5. `CBR_LOWDELAY` | All the bits of 6th byte of data modulus…
86 | `packetSize` | In the range `0 to 255` | All the bits of 7th byte of data |
87 | `iQuant` | In the range `1 to 31` | All the bits of 8th byte of data |
88 | `pQuant` | In the range `1 to 31` | All the bits of 9th byte of data |
89 | `rvlcEnable` | 0. `PV_OFF` 1. `PV_ON` | bit 0 of 10th byte of data |
90 | `quantType` | 0. `0` 1. `1` | bit 0 of 11th byte of data |
91 | `noFrameSkipped` | 0. `PV_OFF` 1. `PV_ON` | bit 0 of 12th byte of data |
92 | `sceneDetect` | 0. `PV_OFF` 1. `PV_ON` | bit 0 of 13th byte of data |
93 | `numIntraMB` | In the range `0 to 7` | bit 0, 1 and 2 of 14th byte of data |
94 | `searchRange` | In the range `0 to 31` | bit 0, 1, 2, 3 and 4 of 15th byte of data |
[all …]
/frameworks/base/core/java/android/content/
DAbstractThreadedSyncAdapter.java248 } catch (RuntimeException | Error th) { in startSync()
250 Log.d(TAG, "startSync() caught exception", th); in startSync()
252 throw th; in startSync()
291 } catch (RuntimeException | Error th) { in cancelSync()
293 Log.d(TAG, "cancelSync() caught exception", th); in cancelSync()
295 throw th; in cancelSync()
371 } catch (RuntimeException | Error th) { in run()
373 Log.d(TAG, "caught exception", th); in run()
375 throw th; in run()
/frameworks/base/core/tests/coretests/src/android/app/activity/
DLaunchpadTabActivity.java36 TabHost th = getTabHost(); in onCreate() local
37 TabHost.TabSpec ts = th.newTabSpec("1"); in onCreate()
40 th.addTab(ts); in onCreate()
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
Daccessorychat.c90 pthread_t th; in usb_device_added() local
139 pthread_create(&th, NULL, read_thread, (void *)(uintptr_t)ep1->bEndpointAddress); in usb_device_added()
140 pthread_create(&th, NULL, write_thread, (void *)(uintptr_t)ep2->bEndpointAddress); in usb_device_added()
142 pthread_create(&th, NULL, read_thread, (void *)(uintptr_t)ep2->bEndpointAddress); in usb_device_added()
143 pthread_create(&th, NULL, write_thread, (void *)(uintptr_t)ep1->bEndpointAddress); in usb_device_added()
/frameworks/base/tools/powermodel/src/com/android/powermodel/
DParseException.java22 public ParseException(int line, String message, Throwable th) { in ParseException() argument
23 super(message, th); in ParseException()
/frameworks/base/libs/usb/tests/accessorytest/
Dhid.c141 pthread_t th; in open_hid() local
142 pthread_create(&th, NULL, hid_thread, (void *)(uintptr_t)fd); in open_hid()
200 pthread_t th; in init_hid() local
201 pthread_create(&th, NULL, inotify_thread, NULL); in init_hid()
Dusb.c114 pthread_t th; in usb_device_added() local
150 pthread_create(&th, NULL, read_thread, NULL); in usb_device_added()
151 pthread_create(&th, NULL, write_thread, NULL); in usb_device_added()
/frameworks/base/core/proto/android/os/
Dappbackgroundrestrictioninfo.proto76 // total battery usage within last 24h (1/10000th)
78 // background battery usage (1/10000th)
80 // FGS battery usage (1/10000th)
82 // Foreground battery usage (1/10000th)
84 // Cached battery usage (1/10000th)
/frameworks/layoutlib/bridge/src/android/view/
DView_Delegate.java92 } catch (Throwable th) { in layout()
93 Bridge.getLog().error(ILayoutLog.TAG_BROKEN, "View layout failed", th, null, null); in layout()
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
DImageProcessingActivityJB.java679 int th = mBitmapHeight; in startProcessor() local
681 if (tw > mScreenWidth || th > mScreenHeight) { in startProcessor()
683 float s2 = (float)th / (float)mScreenHeight; in startProcessor()
687 th /= s1; in startProcessor()
690 th /= s2; in startProcessor()
694 android.util.Log.v("rs", "TV sizes " + tw + ", " + th); in startProcessor()
697 mDisplayView.mHeight = th; in startProcessor()
/frameworks/av/media/codecs/amrwb/enc/inc/
Dqisf_ns.tab272 * 4th split: isf8 to isf11
311 * 5th split: isf12 to isf15
Dqpisf_2s.tab937 * 2nd stage codebook; 4th split: isf2_9 to isf2_11
977 * 2nd stage codebook; 5th split: isf2_12 to isf2_15
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
DImageProcessingActivity2.java724 int th = mBitmapHeight; in startProcessor() local
726 if (tw > mScreenWidth || th > mScreenHeight) { in startProcessor()
728 float s2 = (float)th / (float)mScreenHeight; in startProcessor()
732 th /= s1; in startProcessor()
735 th /= s2; in startProcessor()
739 android.util.Log.v("rs", "TV sizes " + tw + ", " + th); in startProcessor()
742 mDisplayViewIO.mHeight = th; in startProcessor()
/frameworks/av/media/libmediatranscoding/transcoder/tests/fuzzer/
DREADME.md26 | `bitrate` | In the range `0` to `500000000` | All bits of 4th and 5th byte of data |
/frameworks/compile/slang/tests/F_reflection3264_invokable_mismatch/
Dstderr.txt.expect3 reflection3264_invokable_mismatch.rscript:10:6: error: 4th parameter of invokable function 'b' has …
/frameworks/layoutlib/bridge/src/com/android/internal/lang/
DSystem_Delegate.java37 public static void log(String message, Throwable th) { in log() argument
/frameworks/compile/slang/tests/F_reflection3264_variable_mismatch/
Dstderr.txt.expect7 reflection3264_variable_mismatch.rscript:32:5: error: 10th global variable is 'h32' for 32-bit targ…
/frameworks/base/core/java/com/android/internal/app/procstats/
DSparseMappingTable.java652 private static void logOrThrow(String message, Throwable th) { in logOrThrow() argument
653 Slog.e(TAG, message, th); in logOrThrow()
655 throw new RuntimeException(message, th); in logOrThrow()
/frameworks/base/packages/SystemUI/docs/
Dexecutors.md196 <th>Method</th>
197 <th>Description</th>
/frameworks/compile/slang/tests/F_reflection3264_reduce_mismatch/
Dstderr.txt.expect3 reflection3264_reduce_mismatch.rscript:37:12: error: 4th input of reduction kernel 'cc' has type 'u…
/frameworks/base/cmds/incidentd/src/
DBroadcaster.cpp405 thread th([file, writeFd, args]() { file->startFilteringData(writeFd, args); }); in send_to_dropbox() local
407 th.detach(); in send_to_dropbox()
/frameworks/hardware/interfaces/displayservice/1.0/
DIDisplayEventReceiver.hal35 * @param count Request to be sent a callback for every <count>th event.

12