HomeSort by relevance Sort by last modified time
    Searched full:patch (Results 1 - 25 of 1214) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/
.gitignore 1 *.patch
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
commitqueuetask_unittest.py 54 def command_passed(self, success_message, patch):
55 log("command_passed: success_message='%s' patch='%s'" % (
56 success_message, patch.id()))
58 def command_failed(self, failure_message, script_error, patch):
59 log("command_failed: failure_message='%s' script_error='%s' patch='%s'" % (
60 failure_message, script_error, patch.id()))
63 def refetch_patch(self, patch):
64 return patch
69 def report_flaky_tests(self, patch, flaky_results, results_archive):
71 log("report_flaky_tests: patch='%s' flaky_tests='%s' archive='%s'" % (patch.id(), flaky_tests, results_archive.filename)
    [all...]
commitqueuetask.py 38 def command_passed(self, message, patch):
41 def command_failed(self, message, script_error, patch):
44 def refetch_patch(self, patch):
50 def archive_last_layout_test_results(self, patch):
54 def report_flaky_tests(self, patch, flaky_tests, results_archive):
59 def __init__(self, delegate, patch):
61 self._patch = patch
85 self._delegate.command_passed(success_message, patch=self._patch)
89 self.failure_status_id = self._delegate.command_failed(failure_message, script_error=self._script_error, patch=self._patch)
114 "Applied patch",
    [all...]
  /external/iptables/
release.sh 10 PATCH="patch-iptables-$PREV_VERSION-$VERSION.bz2";
16 git diff "v$PREV_VERSION..v$VERSION" | bzip2 > "$TMPDIR/$PATCH"
29 gpg -u "Netfilter Core Team" -sb "$PATCH";
30 md5sum "$PATCH" >"$PATCH.md5sum";
31 sha1sum "$PATCH" >"$PATCH.sha1sum";
  /external/openssl/patches/
README 1 progs.patch:
6 small_records.patch:
13 With this patch, OpenSSL statically allocates 4K + 4K buffers, with
18 handshake_cutthrough.patch
21 Finished message even when negotiating full-handshakes. With this patch,
25 jsse.patch
29 npn.patch
  /external/webkit/Tools/QueueStatusServer/templates/
releasepatch.html 2 Patch to release: <input name="attachment_id"> from <input name="queue_name"><input type="submit" value="Release locks and remove from queue"></div>
submittoews.html 2 Attachment id of patch to submit: <input name="attachment_id"><input type="submit" value="Submit for EWS Processing"></div>
  /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" | sort ) 2> /dev/null`
66 for PATCH in $PATCHES; do
67 PATCHDIR=`dirname $PATCH`
68 PATCHNAME=`basename $PATCH`
70 cd $SRC_DIR/$PATCHDIR && patch -p1 < $PATCHES_DIR/$PATCH
    [all...]
  /frameworks/base/docs/html/guide/developing/tools/
draw9patch.jd 1 page.title=Draw 9-patch
6 <p>The Draw 9-patch tool allows you to easily create a
8 <p>For an introduction to Nine-patch graphics and how they work, please read
9 the section about Nine-patch in the
10 <a href="{@docRoot}guide/topics/graphics/2d-graphics.html#nine-patch">2D Graphics</a>
16 <p>Here's a quick guide to create a Nine-patch graphic using the Draw 9-patch tool.
23 <li>Drag your PNG image into the Draw 9-patch window
24 (or <strong>File</strong> > <strong>Open 9-patch...</strong> to locate the file).
34 <li>When done, select <strong>File</strong> > <strong>Save 9-patch...</strong
    [all...]
  /external/webkit/Tools/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
138 sub patch($) subroutine
    [all...]
  /external/bouncycastle/
import_bouncycastle.sh 45 echo " ./import_bouncycastle.sh regenerate <patch/*.patch>"
46 echo " ./import_bouncycastle.sh generate <patch/*.patch> </path/to/bcprov-jdk*-*.tar.gz>"
52 die "Bouncy Castle patch directory patches/ not found"
83 declare -r patch=$1
84 shift || usage "No patch file specified."
87 regenerate $patch
89 declare -r patch=$1
90 shift || usage "No patch file specified.
    [all...]
  /external/chromium/base/third_party/dmg_fp/
README.chromium 14 gcc_warnings.patch.
15 - made some minor changes to build on 64-bit, see gcc_64_bit.patch.
16 - made minor changes for -Wextra for Mac build, see mac_wextra.patch
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues.py 164 return tool.status_server.update_status(cls.name, message, state["patch"], failure_log)
204 def _update_status(self, message, patch=None, results_file=None):
205 return self._tool.status_server.update_status(self.name, message, patch, results_file)
211 patch = self._tool.bugs.fetch_attachment(patch_id)
212 if not patch:
213 # FIXME: Using a fake patch because release_work_item has the wrong API.
215 # mostly we just need to remove this bogus patch from our queue.
217 patch = Attachment({'id': patch_id}, None)
218 self._release_work_item(patch)
220 return patch
    [all...]
earlywarningsystem.py 43 def should_proceed_with_work_item(self, patch):
60 def _build(self, patch, first_run=False):
70 patch.id()]
82 def review_patch(self, patch):
83 if patch.is_obsolete():
84 self._did_error(patch, "%s does not process obsolete patches." % self.name)
87 if patch.bug().is_closed():
88 self._did_error(patch, "%s does not process patches on closed bugs." % self.name)
91 if not self._build(patch, first_run=True):
94 self._build(patch)
    [all...]
  /frameworks/base/libs/hwui/
Patch.h 40 // 9-patch structures
44 * An OpenGL patch. This contains an array of vertices and an array of
47 struct Patch {
48 Patch(const uint32_t xCount, const uint32_t yCount, const int8_t emptyQuads = 0);
49 ~Patch();
84 }; // struct Patch
  /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/Tools/Scripts/webkitpy/tool/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/openssl/
import_openssl.sh 45 echo " ./import_openssl.sh regenerate <patch/*.patch>"
46 echo " ./import_openssl.sh generate <patch/*.patch> </path/to/openssl-*.tar.gz>"
52 die "OpenSSL patch directory patches/ not found"
83 declare -r patch=$1
84 shift || usage "No patch file specified."
87 regenerate $patch
89 declare -r patch=$1
90 shift || usage "No patch file specified.
    [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...]
  /external/dnsmasq/contrib/dns-loc/
README 3 Here is a patch against dnsmasq 2.39 which provides support for LOC
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bug.py 91 return [patch for patch in self.attachments(include_obsolete)
92 if patch.is_patch()]
95 return [patch for patch in self.patches() if patch.review() == "?"]
98 patches = [patch for patch in self.patches() if patch.review() == "+"]
103 return filter(lambda patch: patch.reviewer(), patches
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
ColorChecker.java 22 * pattern in an image, and return the average value of each color patch.
55 /** Returns patch RGB triplet for patch (x, y), or null if the pattern wasn't
58 * @param x Column of the patch
59 * @param y Row of the patch
61 * patch in roughly linear luminance, mapped to the 0-1 range.
73 /** Returns patch (x, y) color channel c.
75 * @param x Column of the patch
76 * @param y Row of the patch
77 * @param c Color channel of the patch (0 = R, 1 = G, 2 = B
    [all...]
  /frameworks/base/core/jni/android/graphics/
NinePatchPeeker.cpp 25 Res_png_9patch* patch = (Res_png_9patch*) data; local
26 size_t patchSize = patch->serializedSize();
30 memcpy(patchNew, patch, patchSize);
38 //printf("9patch: (%d,%d)-(%d,%d)\n",
44 // 'cause we don't want 565 predithered, since as a 9patch, we know
  /external/webkit/Tools/Scripts/webkitpy/common/net/
statusserver.py 62 def _add_patch(self, patch):
63 if not patch:
65 if patch.bug_id():
66 self._browser["bug_id"] = unicode(patch.bug_id())
67 if patch.id():
68 self._browser["patch_id"] = unicode(patch.id())
82 def _post_status_to_server(self, queue_name, status, patch, results_file):
93 self._add_patch(patch)
128 patch_status_url = "%s/next-patch/%s" % (self.url, queue_name)
131 def _post_release_work_item(self, queue_name, patch)
    [all...]

Completed in 582 milliseconds

1 2 3 4 5 6 7 8 91011>>