HomeSort by relevance Sort by last modified time
    Searched full:protected (Results 626 - 650 of 40743) sorted by null

<<21222324252627282930>>

  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/ARCMigrate/
ARCMTActions.h 21 protected:
29 protected:
38 protected:
48 protected:
68 protected:
  /tools/loganalysis/src/com/android/loganalysis/rule/
AbstractPowerRule.java 48 protected long getTimeOnBattery() {
52 protected BatteryStatsSummaryInfoItem getSummaryItem() {
56 protected BatteryStatsDetailedInfoItem getDetailedAnalysisItem() {
60 protected DumpsysProcStatsItem getProcStatsItem() {
64 protected DumpsysWifiStatsItem getWifiStatsItem() {
  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderErrors.hpp 60 protected:
61 /* Protected type definitions */
93 /* Protected methods */
131 protected:
132 /* Protected methods */
156 protected:
157 /* Protected methods */
180 protected:
181 /* Protected methods */
203 protected
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/
TunerHal.java 36 protected static final String TAG = "TunerHal";
37 protected static final boolean DEBUG = false;
83 protected static final int PID_PAT = 0;
84 protected static final int PID_ATSC_SI_BASE = 0x1ffb;
85 protected static final int PID_DVB_SDT = 0x0011;
86 protected static final int PID_DVB_EIT = 0x0012;
87 protected static final int DEFAULT_VSB_TUNE_TIMEOUT_MS = 2000;
88 protected static final int DEFAULT_QAM_TUNE_TIMEOUT_MS = 4000; // Some device takes time for
100 protected @DeliverySystemType int mDeliverySystemType;
171 protected TunerHal(Context context)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTestCase.java 47 protected static final long TIMEOUT = 30 * DateUtils.SECOND_IN_MILLIS;
48 protected static final int REQUEST_CODE = 42;
54 protected UiDevice mDevice;
55 protected MyActivity mActivity;
88 protected String getColumn(Uri uri, String column) {
99 protected byte[] readFully(Uri uri) throws IOException {
105 protected byte[] readTypedFully(Uri uri, String mimeType) throws IOException {
114 protected byte[] readFully(InputStream in) throws IOException {
128 protected void writeFully(Uri uri, byte[] data) throws IOException {
138 protected boolean supportedHardware()
    [all...]
  /cts/hostsidetests/net/src/com/android/cts/net/
HostsideNetworkTestCase.java 41 protected static final boolean DEBUG = false;
42 protected static final String TAG = "HostsideNetworkTests";
43 protected static final String TEST_PKG = "com.android.cts.net.hostside";
44 protected static final String TEST_APK = "CtsHostsideNetworkTestsApp.apk";
45 protected static final String TEST_APP2_PKG = "com.android.cts.net.hostside.app2";
46 protected static final String TEST_APP2_APK = "CtsHostsideNetworkTestsApp2.apk";
62 protected void setUp() throws Exception {
73 protected void tearDown() throws Exception {
79 protected void installPackage(String apk) throws FileNotFoundException,
85 protected void uninstallPackage(String packageName, boolean shouldSucceed
    [all...]
  /developers/samples/android/security/DirectBoot/
template-params.xml 38 This sample demonstrates how to store/access data in a device protected storage
75 Sample demonstrating how to store data in a device protected storage which
87 This sample demonstrates how to store and access data in a device protected
91 - Credential protected:
94 - Device protected:
98 Credential protected storage is unavailable (an direct boot aware component primarily relies on data stored in the new Device protected storage area,
99 but they may access Credential protected data when unlocked) by adding `directBootAware="true"` in the manifest.
106 Credential protected storage becomes available. The storage APIs on the Context supplied to these components will always point to Credential protected storage by default
    [all...]
  /external/javassist/src/main/javassist/
Modifier.java 33 public static final int PROTECTED = AccessFlag.PROTECTED;
64 * Returns true if the modifiers include the <tt>protected</tt>
68 return (mod & PROTECTED) != 0;
73 * <tt>public</tt>, <tt>protected</tt>, or <tt>private</tt>.
76 return (mod & (PUBLIC | PRIVATE | PROTECTED)) == 0;
172 * Truns the public bit on. The protected and private bits are
176 return (mod & ~(PRIVATE | PROTECTED)) | PUBLIC;
180 * Truns the protected bit on. The protected and public bits ar
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStore3DESCipherSpi.java 64 protected ECB(int keymasterPadding) {
82 protected CBC(int keymasterPadding) {
100 protected void initKey(int i, Key key) throws InvalidKeyException {
114 protected int engineGetBlockSize() {
119 protected int engineGetOutputSize(int inputLen) {
124 protected final byte[] engineGetIV() {
129 protected AlgorithmParameters engineGetParameters() {
151 protected void initAlgorithmSpecificParameters() throws InvalidKeyException {
164 protected void initAlgorithmSpecificParameters(AlgorithmParameterSpec params)
192 protected void initAlgorithmSpecificParameters(AlgorithmParameters params
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/hardware/
FakeSensorManager.java 91 protected List<Sensor> getFullSensorList() {
99 protected List<Sensor> getFullDynamicSensorList() {
104 protected void unregisterListenerImpl(SensorEventListener listener, Sensor sensor) {
114 protected boolean registerListenerImpl(SensorEventListener listener, Sensor sensor,
129 protected boolean flushImpl(SensorEventListener listener) {
134 protected SensorDirectChannel createDirectChannelImpl(MemoryFile memoryFile,
140 protected void destroyDirectChannelImpl(SensorDirectChannel channel) {
145 protected int configureDirectChannelImpl(SensorDirectChannel channel, Sensor s, int rate) {
150 protected void registerDynamicSensorCallbackImpl(DynamicSensorCallback callback,
156 protected void unregisterDynamicSensorCallbackImpl
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecLocalDevice.java 55 protected final HdmiControlService mService;
56 protected final int mDeviceType;
57 protected int mAddress;
58 protected int mPreferredAddress;
59 protected HdmiDeviceInfo mDeviceInfo;
60 protected int mLastKeycode = HdmiCecKeycode.UNSUPPORTED_KEYCODE;
61 protected int mLastKeyRepeatCount = 0;
117 protected final ActiveSource mActiveSource = new ActiveSource();
125 protected final HdmiCecMessageCache mCecMessageCache = new HdmiCecMessageCache();
126 protected final Object mLock
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestBase.java 55 protected static final int WAIT_FOR_SCAN_RESULT = 10 * 1000; //10 seconds
56 protected static final int WIFI_SCAN_TIMEOUT = 50 * 1000; // 50 seconds
57 protected static final int SHORT_TIMEOUT = 5 * 1000; // 5 seconds
58 protected static final long LONG_TIMEOUT = 2 * 60 * 1000; // 2 minutes
59 protected static final long WIFI_CONNECTION_TIMEOUT = 5 * 60 * 1000; // 5 minutes
61 protected static final long WIFI_STOP_START_INTERVAL = 2 * 60 * 1000; // 2 minutes
63 protected static final long PING_TIMER = 3 * 60 *1000; // 3 minutes
64 protected static final int SUCCESS = 0; // for Wifi tethering state change
65 protected static final int FAILURE = 1;
66 protected static final int INIT = -1
    [all...]
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArrayImageTextureSize.hpp 92 protected:
93 /* Protected methods */
110 /* Protected variables */
116 /* Protected static constants */
134 protected:
135 /* Protected methods */
145 /* Protected variables */
148 /* Protected static constants */
164 protected:
165 /* Protected methods *
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TrieBuilder.java 98 // protected data member -----------------------------------------------
105 protected int m_index_[];
106 protected int m_indexLength_;
107 protected int m_dataCapacity_;
108 protected int m_dataLength_;
109 protected boolean m_isLatin1Linear_;
110 protected boolean m_isCompacted_;
115 protected int m_map_[];
120 protected static final int SHIFT_ = Trie.INDEX_STAGE_1_SHIFT_;
126 protected static final int MAX_INDEX_LENGTH_ = (0x110000 >> SHIFT_)
    [all...]

Completed in 1103 milliseconds

<<21222324252627282930>>