HomeSort by relevance Sort by last modified time
    Searched refs:newPath (Results 1 - 25 of 223) sorted by null

1 2 3 4 5 6 7 8 9

  /build/soong/scripts/
setup_go_workspace_for_soong.sh 49 #causes $newPath to mirror $existingPath
51 newPath="$2"
52 mkdir -p "$newPath"
53 echoAndDo bindfs "${existingPath}" "${newPath}"
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 133 char newPath[MAXPATHLEN];
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/
HdmiUtils.java 229 * @param newPath new path
232 static boolean isAffectingActiveRoutingPath(int activePath, int newPath) {
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) {
265 // where the active nibble is not zero. For (activePath, newPath),
275 int nibbleNew = (newPath >> i) & 0xF
    [all...]
HdmiCecLocalDeviceTv.java 418 int newPath = mService.portIdToPath(portId);
419 startRoutingControl(oldPath, newPath, true, callback);
423 void startRoutingControl(int oldPath, int newPath, boolean queryDevicePowerStatus,
426 if (oldPath == newPath) {
430 HdmiCecMessageBuilder.buildRoutingChange(mAddress, oldPath, newPath);
434 new RoutingControlAction(this, newPath, queryDevicePowerStatus, callback));
645 int newPath = mService.portIdToPath(getActivePortId());
646 setActivePath(newPath);
647 startRoutingControl(getActivePath(), newPath, false, null);
690 int newPath = HdmiUtils.twoBytesToInt(params, 2)
    [all...]
HdmiCecMessageBuilder.java 302 * @param newPath physical address of the new active routing path
305 static HdmiCecMessage buildRoutingChange(int src, int oldPath, int newPath) {
308 (byte) ((newPath >> 8) & 0xFF), (byte) (newPath & 0xFF)
HdmiCecLocalDevicePlayback.java 270 int newPath = HdmiUtils.twoBytesToInt(message.getParams(), 2);
271 maySetActiveSource(newPath);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileAwareUriMatcher.java 70 String newPath = path;
73 newPath = path.substring(1);
75 String[] tokens = PATH_SPLIT_PATTERN.split(newPath);
  /frameworks/base/core/java/android/content/
UriMatcher.java 168 String newPath = path;
171 newPath = path.substring(1);
173 tokens = newPath.split("/");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 479 String newPath = sb.toString();
481 if (newPath.equals(currPath) && newPath.equals(mLastFolderUsedInCombo)) {
488 TreeSet<String> filePaths = mFolderCache.get(newPath);
493 IFolder folder = mProject.getFolder(newPath);
499 filePaths.add(newPath + name);
507 mFolderCache.put(newPath, filePaths);
510 currPath = newPath + leafName;
537 mLastFolderUsedInCombo = newPath;
  /frameworks/base/core/jni/
android_graphics_drawable_VectorDrawable.cpp 47 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath();
48 return reinterpret_cast<jlong>(newPath);
54 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(*srcFullPath);
55 return reinterpret_cast<jlong>(newPath);
59 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath();
60 return reinterpret_cast<jlong>(newPath);
66 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(*srcClipPath);
67 return reinterpret_cast<jlong>(newPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoringTest.java 154 IPath newPath = sourcePath.removeLastSegments(1).append(layoutName + DOT_XML);
155 fileToGolden.put(newPath, layoutName + DOT_XML);
ExtractStyleRefactoringTest.java 218 IPath newPath = refactoring.getStyleFile(getProject()).getProjectRelativePath();
219 fileToGolden.put(newPath, styleFileName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 212 String newPath = sb.toString();
213 mValues.folderPath = newPath;
214 mWsFolderPathTextField.setText(newPath);
  /frameworks/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 863 GeneralPath newPath = new GeneralPath();
867 newPath.append(iterator, false /*connect*/);
868 mPath = newPath;
887 GeneralPath newPath = new GeneralPath();
891 newPath.append(iterator, false /*connect*/);
894 dst.mPath = newPath;
896 mPath = newPath;
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 796 String newPath = path.substring(0, lastSlash + 1) + newName;
797 File newFile = new File(newPath);
800 Log.w(TAG, "renaming "+ path + " to " + newPath + " failed");
806 values.put(Files.FileColumns.DATA, newPath);
816 Log.e(TAG, "Unable to update path for " + path + " to " + newPath);
825 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) {
828 mMediaProvider.call(MediaStore.UNHIDE_CALL, newPath, null);
830 Log.e(TAG, "failed to unhide/rescan for " + newPath);
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 177 @Override public void link(String oldPath, String newPath) throws ErrnoException {
179 os.link(oldPath, newPath);
284 @Override public void rename(String oldPath, String newPath) throws ErrnoException {
286 os.rename(oldPath, newPath);
333 @Override public void symlink(String oldPath, String newPath) throws ErrnoException {
335 os.symlink(oldPath, newPath);
Os.java 110 public void link(String oldPath, String newPath) throws ErrnoException;
142 public void rename(String oldPath, String newPath) throws ErrnoException;
172 public void symlink(String oldPath, String newPath) throws ErrnoException;
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 139 SmallString<200> newPath = StringRef(FE->getName());
140 fs::make_absolute(newPath);
141 infoOut << newPath << '\n';
  /external/dng_sdk/source/
dng_xmp_sdk.h 216 bool newPath = true);
  /external/skia/resources/
test.lua 30 local path = Sk.newPath();
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
BrowsedMediaPlayer.java 371 String newPath = "";
387 if ((newPath = byteToString(folderUid)) == null) {
390 } else if (isBrowsableFolderDn(newPath) == false) {
394 } else if (mPathStack.peek().equals(newPath) == true) {
399 mMediaBrowser.subscribe(newPath, folderItemsCb);
401 mPathStack.push(newPath);
413 newPath = mPathStack.peek();
414 mMediaBrowser.subscribe(newPath, folderItemsCb);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
GalleryWidgetMigrator.java 160 String newPath = NEW_EXT_PATH + entry.relativePath;
161 int newBucketId = GalleryUtils.getBucketId(newPath);
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-decoration-model/1.0/
doxia-decoration-model-1.0.jar 
  /packages/apps/Nfc/src/com/android/nfc/beam/
BeamTransferManager.java 542 String newPath = beamRoot + "beam-" + sdf.format(new Date());
543 File newFile = new File(newPath);
546 newPath = beamRoot + "beam-" + sdf.format(new Date()) + "-" +
548 newFile = new File(newPath);
  /libcore/luni/src/main/java/android/system/
Os.java 291 public static void link(String oldPath, String newPath) throws ErrnoException { Libcore.os.link(oldPath, newPath); }
447 public static void rename(String oldPath, String newPath) throws ErrnoException { Libcore.os.rename(oldPath, newPath); }
571 public static void symlink(String oldPath, String newPath) throws ErrnoException { Libcore.os.symlink(oldPath, newPath); }

Completed in 1041 milliseconds

1 2 3 4 5 6 7 8 9