Searched refs:newPath (Results 1 - 12 of 12) sorted by relevance

/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp133 char newPath[MAXPATHLEN]; local
134 strcpy(newPath, path);
135 strcat(newPath, "/");
136 strcat(newPath, ent->d_name);
139 scan(newPath);
145 scanFile(newPath);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiUtils.java229 * @param newPath new path
232 static boolean isAffectingActiveRoutingPath(int activePath, int newPath) { argument
243 int nibble = (newPath >> i) & 0xF;
246 newPath &= mask;
250 if (newPath == 0x0000) {
253 return isInActiveRoutingPath(activePath, newPath);
260 * @param newPath new path
263 static boolean isInActiveRoutingPath(int activePath, int newPath) { argument
265 // where the active nibble is not zero. For (activePath, newPath),
275 int nibbleNew = (newPath >>
[all...]
H A DHdmiCecLocalDeviceTv.java395 int newPath = mService.portIdToPath(portId);
396 startRoutingControl(oldPath, newPath, true, callback);
400 void startRoutingControl(int oldPath, int newPath, boolean queryDevicePowerStatus, argument
403 if (oldPath == newPath) {
407 HdmiCecMessageBuilder.buildRoutingChange(mAddress, oldPath, newPath);
411 new RoutingControlAction(this, newPath, queryDevicePowerStatus, callback));
652 int newPath = mService.portIdToPath(getActivePortId());
653 setActivePath(newPath);
654 startRoutingControl(getActivePath(), newPath, false, null);
697 int newPath
[all...]
H A DHdmiCecMessageBuilder.java302 * @param newPath physical address of the new active routing path
305 static HdmiCecMessage buildRoutingChange(int src, int oldPath, int newPath) { argument
308 (byte) ((newPath >> 8) & 0xFF), (byte) (newPath & 0xFF)
H A DHdmiCecLocalDevicePlayback.java200 int newPath = HdmiUtils.twoBytesToInt(message.getParams(), 2);
201 maySetActiveSource(newPath);
H A DHdmiCecLocalDevice.java818 int pathToPortId(int newPath) { argument
820 return mService.pathToPortId(newPath);
/frameworks/base/rs/java/android/renderscript/
H A DPath.java68 Path newPath = new Path(id, rs, p, null, null, quality);
69 return newPath;
/frameworks/base/core/java/android/content/
H A DUriMatcher.java169 String newPath = path;
172 newPath = path.substring(1);
174 tokens = PATH_SPLIT_PATTERN.split(newPath);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java793 GeneralPath newPath = new GeneralPath();
797 newPath.append(iterator, false /*connect*/);
800 dst.mPath = newPath;
802 mPath = newPath;
822 GeneralPath newPath = new GeneralPath();
826 newPath.append(iterator, false /*connect*/);
829 dst.mPath = newPath;
831 mPath = newPath;
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java777 String newPath = path.substring(0, lastSlash + 1) + newName;
778 File newFile = new File(newPath);
781 Log.w(TAG, "renaming "+ path + " to " + newPath + " failed");
787 values.put(Files.FileColumns.DATA, newPath);
797 Log.e(TAG, "Unable to update path for " + path + " to " + newPath);
806 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) {
809 mMediaProvider.call(mPackageName, MediaStore.UNHIDE_CALL, newPath, null);
811 Log.e(TAG, "failed to unhide/rescan for " + newPath);
817 && !newPath.toLowerCase(Locale.US).equals(".nomedia")) {
821 Log.e(TAG, "failed to unhide/rescan for " + newPath);
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java1067 VPath newPath = null;
1069 newPath = new VFullPath((VFullPath) copyChild);
1071 newPath = new VClipPath((VClipPath) copyChild);
1075 mChildren.add(newPath);
1076 if (newPath.mPathName != null) {
1077 targetsMap.put(newPath.mPathName, newPath);
/frameworks/base/core/java/android/net/
H A DUri.java2180 String newPath;
2183 newPath = "/" + newSegment;
2185 newPath = oldPath + newSegment;
2187 newPath = oldPath + "/" + newSegment;
2190 return fromEncoded(newPath);

Completed in 1195 milliseconds