/external/iptables/extensions/ |
.recent-test | 2 # True if recent match patch is applied.
|
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/ |
Instrument.java | 21 private Patch patch; field in class:Instrument 23 protected Instrument(Soundbank soundbank, Patch patch, String name, Class<?> dataClass) { 25 this.patch = patch; 28 public Patch getPatch() { 29 return patch;
|
Sequence.java | 41 private Vector<Patch> patches; 55 this.patches = new Vector<Patch>(); 71 this.patches = new Vector<Patch>(); 108 public Patch[] getPatchList() { 115 Patch[] patch = new Patch[patches.size()]; local 116 patches.toArray(patch); 117 return patch;
|
Soundbank.java | 23 Instrument getInstrument(Patch patch);
|
/external/openssl/patches/ |
README | 1 progs.patch: 6 arm-asm.patch.patch: 11 small_records.patch: 18 With this patch, OpenSSL statically allocates 4K + 4K buffers, with 23 handshake_cutthrough.patch 26 Finished message even when negotiating full-handshakes. With this patch, 31 bad_version.patch
|
/external/webkit/WebKitTools/Scripts/ |
svn-unapply | 33 # Differences from invoking "patch -p0 -R": 39 # Paths from Index: lines are used rather than the paths on the patch lines, which 43 # the patch before it is applied (svn-apply sets it when applying a patch). 44 # Handles binary files (requires patches made by svn-create-patch). 45 # Handles copied and moved files (requires patches made by svn-create-patch). 51 # Handle copied and moved directories (would require patches made by svn-create-patch). 52 # Use version numbers in the patch file and do a 3-way merge. 54 # Notice a patch that's being unapplied at the "wrong level" and make it work anyway. 55 # Do a dry run on the whole patch and don't do anything if part of the patch i 166 sub patch($) subroutine [all...] |
svn-apply | 31 # "patch" script for WebKit Open Source Project, used to apply patches. 33 # Differences from invoking "patch -p0": 40 # Has mode where it will roll back to svn version numbers in the patch file so svn 42 # Paths from Index: lines are used rather than the paths on the patch lines, which 46 # the patch to today's date using $changeLogTimeZone. 47 # Handles binary files (requires patches made by svn-create-patch). 48 # Handles copied and moved files (requires patches made by svn-create-patch). 54 # Handle copied and moved directories (would require patches made by svn-create-patch). 56 # Notice a patch that's being applied at the "wrong level" and make it work anyway. 57 # Do a dry run on the whole patch and don't do anything if part of the patch i 328 sub patch($) subroutine [all...] |
/ndk/build/tools/ |
patch-sources.sh | 18 # Script used to patch a source directory from a series of patches 25 "Patch a target source directory with a series of patches taken 27 is found under <patches-dir>/subdir/foo.patch will be applied with 28 'patch -p1' in <src-dir>/subdir. 60 PATCHES=`(cd $PATCHES_DIR && find . -name "*.patch") 2> /dev/null` 66 for PATCH in $PATCHES; do 67 PATCHDIR=`dirname $PATCH` 68 PATCHNAME=`basename $PATCH` 70 cd $SRC_DIR/$PATCHDIR && patch -p1 < $ANDROID_NDK_ROOT/$PATCHES_DIR/$PATCH [all...] |
/frameworks/base/docs/html/guide/developing/tools/ |
draw9patch.jd | 1 page.title=Draw 9-patch 4 <p>The Draw 9-patch tool allows you to easily create a 6 <p>For an introduction to Nine-patch graphics and how they work, please read 7 the section on Nine-patch in the 8 <a href="{@docRoot}guide/topics/resources/available-resources.html#ninepatch">Nine-patch Images</a> topic.</p> 13 <p>Here's a quick guide to create a Nine-patch graphic using the Draw 9-patch tool. 20 <li>Drag your PNG image into the Draw 9-patch window 21 (or <strong>File</strong> > <strong>Open 9-patch...</strong> to locate the file). 31 <li>When done, select <strong>File</strong> > <strong>Save 9-patch...</strong [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/commands/ |
queues.py | 70 def _update_status(self, message, patch=None, results_file=None): 71 self.tool.status_server.update_status(self.name, message, patch, results_file) 73 def _did_pass(self, patch): 74 self._update_status(self._pass_status, patch) 76 def _did_fail(self, patch): 77 self._update_status(self._fail_status, patch) 79 def _did_error(self, patch, reason): 81 self._update_status(message, patch) 86 def work_item_log_path(self, patch): 87 return os.path.join("%s-logs" % self.name, "%s.log" % patch.bug_id() [all...] |
download_unittest.py | 60 expected_stderr = "Updating working directory\nProcessing 1 patch from 1 bug.\nProcessing patch 197 from bug 42.\n" 67 expected_stderr = "Updating working directory\n2 reviewed patches found on bug 42.\nProcessing 2 patches from 1 bug.\nProcessing patch 197 from bug 42.\nProcessing patch 128 from bug 42.\n" 75 expected_stderr = "Processing 1 patch from 1 bug.\nUpdating working directory\nProcessing patch 197 from bug 42.\nRunning check-webkit-style\n" 79 expected_stderr = "Processing 1 patch from 1 bug.\nUpdating working directory\nProcessing patch 197 from bug 42.\nBuilding WebKit\n" 83 # FIXME: This expected result is imperfect, notice how it's seeing the same patch as still there after it thought it would have cleared the flags. 84 expected_stderr = """Processing 1 patch from 1 bug [all...] |
queries.py | 58 for patch in patches: 59 print patch.url() 67 make_option("--bugs", action="store_true", dest="bugs", help="Output bug links instead of patch links"), 72 def _needs_commit_queue(patch): 73 if patch.commit_queue() == "+": # If it's already cq+, ignore the patch. 74 log("%s already has cq=%s" % (patch.id(), patch.commit_queue())) 78 committer_record = CommitterList().committer_by_email(patch.attacher_email()) 80 log("%s committer = %s" % (patch.id(), committer_record) [all...] |
/external/dnsmasq/contrib/try-all-ns/ |
README-2.47 | 1 A remake of patch Bob Carroll had posted to dnsmasq, 5 Maybe the patch in question is not acceptible
|
/external/speex/ |
AUTHORS | 12 Patch to speexenc.c to add Vorbis comment format 15 Patch to speexenc.c for supporting more input formats
|
/external/webkit/WebKitTools/Scripts/webkitpy/steps/ |
closebug.py | 46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches() 47 for patch in patches: 48 if patch.review() == "?" or patch.review() == "+": 49 log("Not closing bug %s as attachment %s has review=%s. Assuming there are more patches to land from this bug." % (patch.bug_id(), patch.id(), patch.review())) 51 self._tool.bugs.close_bug_as_fixed(state["patch"].bug_id(), "All reviewed patches have been landed. Closing bug.")
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
statusserver.py | 54 def _add_patch(self, patch): 55 if not patch: 57 if patch.bug_id(): 58 self.browser["bug_id"] = str(patch.bug_id()) 59 if patch.id(): 60 self.browser["patch_id"] = str(patch.id()) 67 def _post_to_server(self, queue_name, status, patch, results_file): 76 self._add_patch(patch) 81 def update_status(self, queue_name, status, patch=None, results_file=None): 87 return NetworkTransaction().run(lambda: self._post_to_server(queue_name, status, patch, results_file) [all...] |
/bootable/recovery/applypatch/ |
imgpatch.c | 17 // See imgdiff.c in this directory for a description of the patch file 33 * Apply the patch given in 'patch_filename' to the source data given 39 const Value* patch, 42 char* header = patch->data; 43 if (patch->size < 12) { 44 printf("patch too short to contain header\n"); 52 printf("corrupt patch file header (magic number)\n"); 61 if (pos + 4 > patch->size) { 65 int type = Read4(patch->data + pos); 69 char* normal_header = patch->data + pos [all...] |
imgdiff_test.sh | 71 run_command rm $WORK_DIR/patch 86 imgdiff "$@" $tmpdir/source $tmpdir/target $tmpdir/patch 87 bsdiff $tmpdir/source $tmpdir/target $tmpdir/patch.bs 88 echo "patch for $fn is $(size $tmpdir/patch) [of $(size $tmpdir/target)] ($(size $tmpdir/patch.bs) with bsdiff)" 89 echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp/stats.txt 92 $ADB push $tmpdir/patch $WORK_DIR/patch || fail "patch push failed [all...] |
/external/dnsmasq/contrib/dns-loc/ |
README | 3 Here is a patch against dnsmasq 2.39 which provides support for LOC
|
/external/iptables/ |
COMMIT_NOTES | 15 1) header files are just in patch-o-matic patch, you need an 17 2) header files are in patch-o-matic patch, and copied to
|
/development/pdk/docs/source/ |
life-of-a-patch.jd | 1 page.title=Life of a Patch 6 a patch, once it's been written. Though it may appear complex, the majority of
|
/external/webkit/WebKitTools/QueueStatusServer/templates/ |
patch.html | 4 <title>Patch Status</title> 9 Patch {{ attachment_id|force_escape|webkit_attachment_id|safe }} (Bug {{ bug_id|force_escape|webkit_bug_id|safe }})
|
/development/apps/NinePatchLab/ |
AndroidManifest.xml | 2 <application android:label="9-patch-lab">
|
/external/openssl/ |
import_openssl.sh | 45 echo " ./import_openssl.sh regenerate patch/*.patch" 59 die "OpenSSL patch directory patches/ not found" 76 declare -r patch=$1 77 shift || usage "No patch file specified." 78 regenerate $patch 111 echo "Applying patch $i" 112 patch -p1 < ../patches/$i || die "Could not apply patches/$i. Fix source and run: $0 regenerate patches/$i" 115 # Cleanup patch output 183 declare -r patch=$ [all...] |
/external/strace/ |
README-Android | 3 1) apply arm-eabi.patch from Debian bug tracker
|