Searched defs:type (Results 76 - 100 of 434) sorted by path

1234567891011>>

/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java70 * If the {@code type} parameter indicates that the result should be a directory,
81 * @param type Must be either {@link BackupAgent#TYPE_FILE} for ordinary file data
95 long size, int type, long mode, long mtime, File outFile) throws IOException {
96 if (type == BackupAgent.TYPE_DIRECTORY) {
94 restoreFile(ParcelFileDescriptor data, long size, int type, long mode, long mtime, File outFile) argument
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java104 * command type which can be one of {@link #AT_CMD_TYPE_READ},
139 * intents that contains the AT command type of the vendor-specific command.
145 * AT command type READ used with
147 * For example, AT+VGM?. There are no arguments for this command type.
152 * AT command type TEST used with
154 * For example, AT+VGM=?. There are no arguments for this command type.
159 * AT command type SET used with
166 * AT command type BASIC used with
174 * AT command type ACTION used with
804 int type) {
803 phoneStateChanged(int numActive, int numHeld, int callState, String number, int type) argument
843 clccResponse(int index, int direction, int status, int mode, boolean mpty, String number, int type) argument
[all...]
H A DBluetoothServerSocket.java37 * <p>The most common type of Bluetooth socket is RFCOMM, which is the type
77 * @param type type of socket
84 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
87 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
92 * @param type type of socket
99 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, ParcelUuid uuid) argument
101 mSocket = new BluetoothSocket(type,
[all...]
H A DBluetoothSocket.java49 * <p>The most common type of Bluetooth socket is RFCOMM, which is the type
139 * @param type type of socket
149 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
151 if (type == BluetoothSocket.TYPE_RFCOMM && uuid == null && fd == -1) {
159 mType = type;
206 * @param type type of socket
215 private BluetoothSocket(int type, in argument
[all...]
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java250 int type, boolean ordered, boolean sticky, IBinder token, int userId) {
254 mType = type;
249 PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, boolean ordered, boolean sticky, IBinder token, int userId) argument
H A DContentProviderOperation.java260 throw new IllegalStateException("bad type, " + mType);
398 * which {@link Builder} type each is allowed. Call {@link #build} to create the
412 /** Create a {@link Builder} of a given type. The uri must not be null. */
413 private Builder(int type, Uri uri) { argument
417 mType = type;
445 * This can only be used with builders of type insert, update, or assert.
461 * This can only be used with builders of type insert, update, or assert.
479 * This can only be used with builders of type update, delete, or assert.
498 * This can only be used with builders of type insert, update, or assert.
516 * This can only be used with builders of type inser
[all...]
H A DContext.java601 * <p>If you supply a non-null <var>type</var> to this function, the returned
602 * file will be a path to a sub-directory of the given type. Though these files
627 * @param type The type of files directory to return. May be null for
646 public abstract File getExternalFilesDir(String type); argument
2434 * @param modeFlags The type of access to grant. May be one or both of
2457 * @param modeFlags The type of access to grant. May be one or both of
2476 * @param modeFlags The type of access to grant. May be one or both of
2502 * @param modeFlags The type of access to grant. May be one or both of
2525 * @param modeFlags The type o
[all...]
H A DContextWrapper.java197 public File getExternalFilesDir(String type) { argument
198 return mBase.getExternalFilesDir(type);
H A DIntent.java124 * <li> <p><b>type</b> -- Specifies an explicit type (a MIME type) of the
125 * intent data. Normally the type is inferred from the data itself.
127 * an explicit type.</p>
130 * at the other information in the intent (the action, data/type, and
149 * <li> <p><b>{@link #ACTION_GET_CONTENT} with MIME type
155 * <li> <p><b>{@link #ACTION_GET_CONTENT} with MIME type
211 * resolution: the action, type, and category. Using this information, a query
220 * <li> <p>The <b>type</
4878 setType(String type) argument
4909 setTypeAndNormalize(String type) argument
4938 setDataAndType(Uri data, String type) argument
4969 setDataAndTypeAndNormalize(Uri data, String type) argument
6806 normalizeMimeType(String type) argument
[all...]
H A DIntentFilter.java40 * match against actions, categories, and data (either via its type, scheme,
61 * itself divided into three attributes: type, scheme, authority, and path.
64 * but no type, only Intent that does not have a type (such as mailto:) will
65 * match; a content: URI will never match because they always have a MIME type
66 * that is supplied by their content provider. Specifying a type with no scheme
69 * then only an Intent with no data or type will match. To specify an authority,
85 * the data (both the <strong>data type</strong> and
92 * Intent type. The Intent
93 * type i
512 addDataType(String type) argument
543 hasDataType(String type) argument
789 addDataPath(String path, int type) argument
899 matchData(String type, String scheme, Uri data) argument
1103 match(String action, String type, String scheme, Uri data, Set<String> categories, String logTag) argument
1446 findMimeType(String type) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java791 int type;
792 while ((type = parser.next()) != XmlPullParser.START_TAG
793 && type != XmlPullParser.END_DOCUMENT) {
797 if (type != XmlPullParser.START_TAG) {
826 int type;
827 while ((type = parser.next()) != XmlPullParser.START_TAG
828 && type != XmlPullParser.END_DOCUMENT) {
832 if (type != XmlPullParser.START_TAG) {
875 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
876 && (type !
1409 buildCompoundName(String pkg, CharSequence procSeq, String type, String[] outError) argument
[all...]
H A DPathPermission.java31 public PathPermission(String pattern, int type, String readPermission, argument
33 super(pattern, type);
H A DRegisteredServicesCache.java64 * The services are referred to by type V and are made available via the
196 private void notifyListener(final V type, final int userId, final boolean removed) { argument
198 Log.d(TAG, "notifyListener: " + type + " is " + (removed ? "removed" : "added"));
213 listener2.onServiceChanged(type, userId, removed);
219 * Value type that describes a Service. The information within can be used
223 public final V type; field in class:RegisteredServicesCache.ServiceInfo
228 public ServiceInfo(V type, ComponentName componentName, int uid) { argument
229 this.type = type;
236 return "ServiceInfo: " + type
245 getServiceInfo(V type, int userId) argument
392 containsType(ArrayList<ServiceInfo<V>> serviceInfos, V type) argument
402 containsTypeAndUid(ArrayList<ServiceInfo<V>> serviceInfos, V type, int uid) argument
[all...]
H A DRegisteredServicesCacheListener.java26 * @param type the type of registered service
29 void onServiceChanged(V type, int userId, boolean removed); argument
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java153 if (tmpValue.type == TypedValue.TYPE_STRING) {
171 if (tmpValue.type == TypedValue.TYPE_STRING) {
198 if (outValue.type != TypedValue.TYPE_STRING) {
231 if (outValue.type != TypedValue.TYPE_STRING) {
661 /*package*/ native final int getResourceIdentifier(String type, argument
H A DResources.java213 * some other type of CharSequence if it is styled.
217 * tool. This integer encodes the package, type, and resource
242 * tool. This integer encodes the package, type, and resource
305 * tool. This integer encodes the package, type, and resource
331 * tool. This integer encodes the package, type, and resource
357 * tool. This integer encodes the package, type, and resource
382 * tool. This integer encodes the package, type, and resource
399 * some other type of CharSequence if it is styled.
402 * tool. This integer encodes the package, type, and resource
419 * tool. This integer encodes the package, type, an
2135 loadXmlResourceParser(int id, String type) argument
2150 loadXmlResourceParser(String file, int id, int assetCookie, String type) argument
[all...]
H A DXmlBlock.java205 // May be some other type... check and try to convert if so.
267 public void require(int type, String namespace, String name) throws XmlPullParserException,IOException { argument
268 if (type != getEventType()
271 throw new XmlPullParserException( "expected "+ TYPES[ type ]+getPositionDescription());
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java885 final int type = DatabaseUtils.getSqlStatementType(sql);
887 statement = obtainPreparedStatement(sql, statementPtr, numParameters, type, readOnly);
888 if (!skipCache && isCacheable(type)) {
1175 int numParameters, int type, boolean readOnly) {
1187 statement.mType = type;
1203 * Holder type for a prepared statement.
1226 // The statement type.
1269 + ", type=" + statement.mType
1174 obtainPreparedStatement(String sql, int statementPtr, int numParameters, int type, boolean readOnly) argument
/frameworks/base/core/java/android/gesture/
H A DGestureLibrary.java51 public void setSequenceType(int type) { argument
52 mStore.setSequenceType(type);
H A DGestureStore.java43 // Nb. bytes Java type Description
108 * @param type SEQUENCE_INVARIANT or SEQUENCE_SENSITIVE
110 public void setSequenceType(int type) { argument
111 mSequenceType = type;
/frameworks/base/core/java/android/hardware/
H A DCamera.java733 "Unsupported message type: " + msgType);
833 Log.e(TAG, "Unknown message type " + msg.what);
1331 private native final void _startFaceDetection(int type); argument
3465 * If the return value is 0, face detection of the specified type is not
H A DLegacySensorManager.java107 private boolean registerLegacyListener(int legacyType, int type, argument
113 Sensor sensor = mSensorManager.getDefaultSensor(type);
160 private void unregisterLegacyListener(int legacyType, int type, argument
165 Sensor sensor = mSensorManager.getDefaultSensor(type);
262 int type = event.sensor.getType();
263 int legacyType = getLegacySensorType(type);
265 if (type == Sensor.TYPE_ORIENTATION) {
353 private static int getLegacySensorType(int type) { argument
354 switch (type) {
H A DSensorManager.java81 // Cached lists of sensors by type. Guarded by mSensorListByType.
377 * Use this method to get the list of available sensors of a certain type.
382 * @param type
385 * @return a list of sensors matching the asked type.
390 public List<Sensor> getSensorList(int type) { argument
395 list = mSensorListByType.get(type);
397 if (type == Sensor.TYPE_ALL) {
402 if (i.getType() == type)
407 mSensorListByType.append(type, list);
414 * Use this method to get the default sensor for a given type
427 getDefaultSensor(int type) argument
[all...]
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java98 * Network type which triggered a {@link #CONNECTIVITY_ACTION} broadcast.
136 * meaning may be specific to a particular network type. Retrieve
159 * The lookup key for an enum that indicates the network device type on which this data activity
348 public static String getNetworkTypeName(int type) { argument
349 switch (type) {
379 return Integer.toString(type);
541 * @param networkType the type of the network over which traffic to the specified
560 * @param networkType the type of the network over which traffic to the specified
702 * @return error A TETHER_ERROR value indicating success or failure type
714 * @return error A TETHER_ERROR value indicating success or failure type
[all...]
H A DNetworkConfig.java35 public int type; field in class:NetworkConfig
61 * [Connection name],[ConnectivityManager connection type],
62 * [associated radio-type],[priority],[dependencyMet]
67 type = Integer.parseInt(fragments[1]);
78 return (type == radio);

Completed in 2264 milliseconds

1234567891011>>