/development/tools/bugreport/src/com/android/bugreport/stacks/ |
D | ThreadSnapshot.java | 64 public ThreadSnapshot(ThreadSnapshot that) { in ThreadSnapshot() argument 65 this.name = that.name; in ThreadSnapshot() 66 this.daemon = that.daemon; in ThreadSnapshot() 67 this.priority = that.priority; in ThreadSnapshot() 68 this.tid = that.tid; in ThreadSnapshot() 69 this.sysTid = that.sysTid; in ThreadSnapshot() 70 this.vmState = that.vmState; in ThreadSnapshot() 71 int N = that.attributeText.size(); in ThreadSnapshot() 73 this.attributeText.add(that.attributeText.get(i)); in ThreadSnapshot() 75 this.heldMutexes = that.heldMutexes; in ThreadSnapshot() [all …]
|
D | LockSnapshot.java | 41 public LockSnapshot(LockSnapshot that) { in LockSnapshot() argument 42 this.type = that.type; in LockSnapshot() 43 this.address = that.address; in LockSnapshot() 44 this.packageName = that.packageName; in LockSnapshot() 45 this.className = that.className; in LockSnapshot() 46 this.threadId = that.threadId; in LockSnapshot() 54 public boolean equals(LockSnapshot that) { in equals() argument 55 return this.address == that.address in equals() 56 || (this.address != null && that.address != null in equals() 57 && this.address.equals(that.address)); in equals() [all …]
|
D | JavaStackFrameSnapshot.java | 43 public JavaStackFrameSnapshot(JavaStackFrameSnapshot that) { in JavaStackFrameSnapshot() argument 44 super(that); in JavaStackFrameSnapshot() 45 this.packageName = that.packageName; in JavaStackFrameSnapshot() 46 this.className = that.className; in JavaStackFrameSnapshot() 47 this.methodName = that.methodName; in JavaStackFrameSnapshot() 48 this.sourceFile = that.sourceFile; in JavaStackFrameSnapshot() 49 this.sourceLine = that.sourceLine; in JavaStackFrameSnapshot() 50 this.language = that.language; in JavaStackFrameSnapshot() 51 final int N = that.locks.size(); in JavaStackFrameSnapshot() 53 this.locks.add(that.locks.get(i).clone()); in JavaStackFrameSnapshot()
|
D | ProcessSnapshot.java | 39 public ProcessSnapshot(ProcessSnapshot that) { in ProcessSnapshot() argument 40 this.pid = that.pid; in ProcessSnapshot() 41 this.cmdLine = that.cmdLine; in ProcessSnapshot() 42 this.date = that.date; in ProcessSnapshot() 43 final int N = that.threads.size(); in ProcessSnapshot() 45 this.threads.add(that.threads.get(i).clone()); in ProcessSnapshot() 60 public int compareTo(ProcessSnapshot that) { in compareTo() argument 61 return this.pid - that.pid; in compareTo()
|
D | KernelStackFrameSnapshot.java | 31 public KernelStackFrameSnapshot(KernelStackFrameSnapshot that) { in KernelStackFrameSnapshot() argument 32 super(that); in KernelStackFrameSnapshot() 33 this.syscall = that.syscall; in KernelStackFrameSnapshot() 34 this.offset0 = that.offset0; in KernelStackFrameSnapshot() 35 this.offset1 = that.offset1; in KernelStackFrameSnapshot()
|
D | NativeStackFrameSnapshot.java | 34 final NativeStackFrameSnapshot that = new NativeStackFrameSnapshot(); in clone() local 35 that.library = this.library; in clone() 36 that.symbol = this.symbol; in clone() 37 that.offset = this.offset; in clone() 38 return that; in clone()
|
D | StackFrameSnapshot.java | 41 protected StackFrameSnapshot(StackFrameSnapshot that) { in StackFrameSnapshot() argument 42 this.frameType = that.frameType; in StackFrameSnapshot() 43 this.text = that.text; in StackFrameSnapshot()
|
/development/tools/bugreport/src/com/android/bugreport/inspector/ |
D | DeadlockDetector.java | 50 public boolean equals(ThreadRecord that) { in equals() argument 51 return this.process == that.process in equals() 52 && this.thread == that.thread; in equals() 63 public int compareTo(ThreadRecord that) { in compareTo() argument 64 int cmp = this.process.compareTo(that.process); in compareTo() 68 return this.thread.compareTo(that.thread); in compareTo() 84 public boolean equals(LockRecord that) { in equals() argument 85 return this.process == that.process in equals() 86 && (this.lock.address == that.lock.address in equals() 87 || (this.lock.address != null && that.lock.address != null in equals() [all …]
|
/development/cmds/monkey/ |
D | README.NETWORK.txt | 5 into the input system. The idea is that a process will run on a host 6 computer that will support higher-level operations (like conditionals, 29 that executed without a problem, or a line starting with ERROR for 30 commands that had problems being run. For commands that return a 31 value, that value is returned on the same line as the OK or ERROR 33 on that line. For ERROR values, this could be a message indicating 52 The format of that parameter is quite flexible. Using the menu key as 55 will add the KEYCODE part). Do note that this last part doesn't work 58 Note that sending a full button press requires sending both the down 59 and the up event for that key [all …]
|
/development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/ |
D | Transaction.java | 85 Transaction that = (Transaction) o; in equals() local 86 return Objects.equals(mItemId, that.mItemId) && Objects.equals(mUserId, that.mUserId) && in equals() 87 Objects.equals(mClientNonce, that.mClientNonce); in equals()
|
/development/host/windows/usb/ |
D | readme.txt | 3 package that is compliant with android_winusb.inf, you need to create 25 devices that were not available when Android SDK was shipped. To do that, 27 file to add descriptions for new devices and interfaces. Note that when .inf 30 not break the installation, but it will cause security warnings (that can be 34 template to create new .inf file for new devices. Note that you also need 35 to build and sign new .cat files for that custom .inf file of yours.
|
D | NOTICE | 13 the copyright owner that is granting the License. 16 other entities that control, are controlled by, or are under common 17 control with that entity. For the purposes of this definition, 37 copyright notice that is included in or attached to the work 41 form, that is based on (or derived from) the Work and for which the 44 of this License, Derivative Works shall not include works that remain 50 to that Work or Derivative Works thereof, that is intentionally 57 and issue tracking systems that are managed by, or on behalf of, the 59 excluding communication that is conspicuously marked or otherwise 79 by such Contributor that are necessarily infringed by their [all …]
|
/development/tools/repo_diff/ |
D | README.md | 61 2. Diff projects that have a match. 62 3. Find commits in source tree B that are not in source tree A. 72 the commits that exist in the downstream project (B) but not the 75 'git cherry' is a useful tool that finds changes 77 not only by finding which commits that were merged 85 * Commits that were squashed with other commits 86 * Commits that were reauthored 93 1. First listing the "git cherry" commits that will give us the 96 a list of changes that actually have lines of code in the tree. 98 that have lines of code in the final source tree. [all …]
|
/development/samples/Home/src/com/example/android/home/ |
D | ApplicationInfo.java | 70 ApplicationInfo that = (ApplicationInfo) o; in equals() local 71 return title.equals(that.title) && in equals() 73 that.intent.getComponent().getClassName()); in equals()
|
/development/samples/USB/MissileLauncher/ |
D | README.txt | 1 MissileLauncher is a simple program that controls Dream Cheeky USB missile launchers. 10 - Sending control requests on endpoint zero that contain data 12 - Receiving packets on an interrupt endpoint using a thread that calls
|
/development/apps/OBJViewer/ |
D | NOTICE | 26 the copyright owner that is granting the License. 29 other entities that control, are controlled by, or are under common 30 control with that entity. For the purposes of this definition, 50 copyright notice that is included in or attached to the work 54 form, that is based on (or derived from) the Work and for which the 57 of this License, Derivative Works shall not include works that remain 63 to that Work or Derivative Works thereof, that is intentionally 70 and issue tracking systems that are managed by, or on behalf of, the 72 excluding communication that is conspicuously marked or otherwise 92 by such Contributor that are necessarily infringed by their [all …]
|
/development/tools/mkstubs/ |
D | README.txt | 7 MkStub is small tool that takes a given JAR and filters all the private stuff we don't want to 31 - an internal "Java method signature" that define parameters types and return value. 72 method parameter or return value that uses that type should generate a fatal error. 76 This is not orthogonal to the fact that private fields and methods are automatically 80 switch to prevent that. 84 ~/somedir/myfinal.jar_sources that will contain the equivalent Java sources. 85 There is not command line switch to prevent that.
|
/development/samples/browseable/RuntimePermissionsWear/ |
D | _index.jd | 8 A sample that shows how you can handle remote data that requires permissions both on
|
/development/vndk/tools/vndk-compliance/ |
D | README.md | 6 Set that device's lunch combo and compile 19 Here is an example on how to do that: 21 * Note all the headers that are being copied by libabc 22 * Create a local dir called include (or inc). Add symlinks to every file that is 24 will be a symlink to that folder
|
/development/samples/TicTacToeMain/ |
D | README.txt | 17 TicTacToeMain is the main project. It defines a main activity that is first 21 To define that TicTacToeMain uses TicTacToeLib as a "project library", the 27 and Android resources (anything under /res) that will be merged in the final 33 One important thing to realize is that the library is not a separately-compiled 35 the main project and the result is used to generate the APK. This means that
|
/development/tools/idegen/ |
D | README | 17 under the "Classpath" tab. This will ensure that you only get access to 44 least one jar is present, so include a random jar that won't get in the 59 has one regular expression per line that matches paths (relative to the 60 project root) that should be excluded from the IDE configuration. We 72 Each line in the file is a regular expression that matches a source root 74 path matches a regular expression that comes earlier in the file, that 82 add "^(?!out/)" (which matches all paths that don't start with "out/").
|
/development/sdk/ |
D | sdk_files_NOTICE.txt | 9 modification, are permitted provided that the following conditions are met: 81 to whom the Software is furnished to do so, provided that the above 83 the Software and that both the above copyright notice(s) and this 128 from and are distributed by that particular Contributor. A 137 "Contributor" means any person or entity that distributes the Program. 171 c) Recipient understands that although each Contributor grants 173 assurances are provided by any Contributor that the Program does 183 responsibility to acquire that license before distributing the 186 d) Each Contributor represents that to its knowledge it has 193 under its own license agreement, provided that: [all …]
|
/development/tools/apkcheck/ |
D | README.txt | 14 all classes, fields, and methods that are referenced by classes.dex but not 37 Load additional public API list. This is intended for APKs that 80 capitalization, but that's unreliable. 102 Annotation classes have trivial entries that show only the class name 104 to verify that a method call on an annotation is valid. 114 that overrides that method must also return Foo, so it would seem that 118 gimmeFoo()" so long as MegaFoo is an instance of Foo. In that case it 123 find a method that matches on everything but the return type, it will 125 to verify that the return types are related, but that's more trouble than 139 default package (i.e. that have no package name). In most cases they're [all …]
|
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/model/ |
D | MutableMediaMetadata.java | 45 MutableMediaMetadata that = (MutableMediaMetadata) o; in equals() local 47 return TextUtils.equals(trackId, that.trackId); in equals()
|
/development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/ |
D | LocationEntry.java | 48 LocationEntry that = (LocationEntry) o; in equals() local 50 if (calendar.getTimeInMillis() != that.calendar.getTimeInMillis()) { in equals()
|