Searched defs:newPath (Results 1 - 8 of 8) 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.java255 * @param newPath new path
258 static boolean isAffectingActiveRoutingPath(int activePath, int newPath) { argument
269 int nibble = (newPath >> i) & 0xF;
272 newPath &= mask;
276 if (newPath == 0x0000) {
279 return isInActiveRoutingPath(activePath, newPath);
286 * @param newPath new path
289 static boolean isInActiveRoutingPath(int activePath, int newPath) { argument
291 // where the active nibble is not zero. For (activePath, newPath),
301 int nibbleNew = (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 DHdmiCecLocalDevice.java836 int pathToPortId(int newPath) { argument
838 return mService.pathToPortId(newPath);
H A DHdmiCecLocalDeviceTv.java418 int newPath = mService.portIdToPath(portId);
419 startRoutingControl(oldPath, newPath, true, callback);
423 void startRoutingControl(int oldPath, int newPath, boolean queryDevicePowerStatus, argument
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
[all...]
/frameworks/av/media/mtp/
H A DMtpUtils.cpp253 int renameTo(const char *oldPath, const char *newPath) { argument
254 int ret = rename(oldPath, newPath);
256 access_ok(newPath);
/frameworks/base/tools/aapt2/link/
H A DTableMerger.cpp288 std::string newPath = prefix.to_string() + mangled_entry + suffix.to_string(); local
290 util::make_unique<FileReference>(master_table_->string_pool.MakeRef(newPath));
/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp47 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(); local
48 return reinterpret_cast<jlong>(newPath);
54 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(*srcFullPath); local
55 return reinterpret_cast<jlong>(newPath);
59 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(); local
60 return reinterpret_cast<jlong>(newPath);
66 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(*srcClipPath); local
67 return reinterpret_cast<jlong>(newPath);

Completed in 170 milliseconds