HomeSort by relevance Sort by last modified time
    Searched refs:patches (Results 1 - 23 of 23) sorted by null

  /bootable/recovery/applypatch/
main.c 48 // *patches (loading file contents into the patches). Returns 0 on
51 char*** sha1s, Value*** patches, int* num_patches) {
54 *patches = malloc(*num_patches * sizeof(Value*));
55 memset(*patches, 0, *num_patches * sizeof(Value*));
74 (*patches)[i] = NULL;
80 (*patches)[i] = malloc(sizeof(Value));
81 (*patches)[i]->type = VAL_BLOB;
82 (*patches)[i]->size = fc.size;
83 (*patches)[i]->data = (char*)fc.data
115 Value** patches; local
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
obsoletepatches.py 46 patches = self._tool.bugs.fetch_bug(bug_id).patches()
47 if not patches:
49 log("Obsoleting %s on bug %s" % (pluralize("old patch", len(patches)), bug_id))
50 for patch in patches:
closebug.py 44 # Check to make sure there are no r? or r+ patches on the bug before closing.
45 # Assume that r- patches are just previous patches someone forgot to obsolete.
46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches()
47 for patch in patches:
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.")
updatechangelogswithreviewer.py 45 patches = self._tool.bugs.fetch_bug(bug_id).reviewed_patches()
46 if len(patches) != 1:
47 log("%s on bug %s, cannot infer reviewer." % (pluralize("reviewed patch", len(patches)), bug_id))
49 patch = patches[0]
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
Sequence.java 41 private Vector<Patch> patches; field in class:Sequence
55 this.patches = new Vector<Patch>();
71 this.patches = new Vector<Patch>();
112 * I simply return an empty array. 'patches' initializes
115 Patch[] patch = new Patch[patches.size()];
116 patches.toArray(patch);
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
download.py 101 def _collect_patches_by_bug(patches):
103 for patch in patches:
109 patches = self._fetch_list_of_patches_to_process(options, args, tool)
112 bugs_to_patches = self._collect_patches_by_bug(patches)
113 log("Processing %s from %s." % (pluralize("patch", len(patches)), pluralize("bug", len(bugs_to_patches))))
115 for patch in patches:
147 patches = tool.bugs.fetch_bug(bug_id).reviewed_patches()
148 log("%s found on bug %s." % (pluralize("reviewed patch", len(patches)), bug_id))
149 all_patches += patches
167 help_text = "Apply and build patches from bugzilla
    [all...]
queries.py 45 # FIXME: This command is poorly named. It's fetching the commit-queue list here. The name implies it's fetching pending-commit (all r+'d patches).
52 name = "patches-in-commit-queue"
53 help_text = "List patches in the commit-queue"
56 patches = tool.bugs.queries.fetch_patches_from_commit_queue()
57 log("Patches in commit queue:")
58 for patch in patches:
63 name = "patches-to-commit-queue"
64 help_text = "Patches which should be added to the commit queue"
77 # We only need to worry about patches from contributers who are not yet committers.
84 patches = tool.bugs.queries.fetch_patches_from_pending_commit_list(
    [all...]
queues.py 148 # Not using BugzillaQueries.fetch_patches_from_commit_queue() so we can reject patches with invalid committers/reviewers.
154 patches = self._validate_patches_in_commit_queue()
155 # FIXME: We could sort the patches in a specific order here, was suggested by https://bugs.webkit.org/show_bug.cgi?id=33395
156 if not patches:
159 # Only bother logging if we have patches in the queue.
160 self.log_progress([patch.id() for patch in patches])
161 return patches[0]
upload.py 60 help_text = "Clear r+ on obsolete patches so they do not appear in the pending-commit list."
62 # NOTE: This was designed to be generic, but right now we're only processing patches from the pending-commit list, so only r+ matters.
78 patches = bug.patches(include_obsolete=True)
79 for patch in patches:
107 log("Bug %s has no non-obsolete patches, ignoring." % bug_id)
110 # We only need to do anything with this bug if one of the r+'d patches does not have a valid committer (cq+ set).
112 log("All reviewed patches on bug %s already have commit-queue+, ignoring." % bug_id)
387 error("Are you sure you want to create one bug with %s patches?" % len(commit_ids))
  /external/openssl/
import_openssl.sh 58 if [ ! -d patches ]; then
59 die "OpenSSL patch directory patches/ not found"
109 # Apply appropriate patches
112 patch -p1 < ../patches/$i || die "Could not apply patches/$i. Fix source and run: $0 regenerate patches/$i"
143 cp ../patches/apps_Android.mk apps/Android.mk
144 cp ../patches/crypto_Android.mk crypto/Android.mk
145 cp ../patches/ssl_Android.mk ssl/Android.mk
161 cp ../patches/testssl.sh android.testssl
    [all...]
  /bootable/recovery/updater/
install.c 759 Value** patches = ReadValueVarArgs(state, argc-4, argv+4); local
763 if (patches[i*2]->type != VAL_STRING) {
767 if (patches[i*2+1]->type != VAL_BLOB) {
774 FreeValue(patches[i]);
776 free(patches);
782 patch_sha_str[i] = patches[i*2]->data;
783 patches[i*2]->data = NULL;
784 FreeValue(patches[i*2]);
785 patches[i] = patches[i*2+1]
    [all...]
  /external/webkit/WebKitTools/Scripts/
svn-apply 31 # "patch" script for WebKit Open Source Project, used to apply patches.
43 # makes patches generated by "cvs diff" work (increasingly unimportant since we
45 # ChangeLog patches use --fuzz=3 to prevent rejects, and the entry date is set in
47 # Handles binary files (requires patches made by svn-create-patch).
48 # Handles copied and moved files (requires patches made by svn-create-patch).
49 # Handles git-diff patches (without binary changes) created at the top-level directory
54 # Handle copied and moved directories (would require patches made by svn-create-patch).
59 # Handle git-diff patches with binary delta
126 my @patches;
144 push @patches, $patch
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
bugzilla.py 161 def patches(self, include_obsolete=False): member in class:Bug
166 return [patch for patch in self.patches() if patch.review() == "?"]
169 patches = [patch for patch in self.patches() if patch.review() == "+"]
171 return patches
174 return filter(lambda patch: patch.reviewer(), patches)
177 patches = [patch for patch in self.patches()
180 return patches
183 return filter(lambda patch: patch.committer(), patches)
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 86 private List<Rectangle> patches; field in class:ImageEditorPanel
243 JCheckBox showPatches = new JCheckBox("Show patches");
483 for (Rectangle rect : patches) {
502 for (Rectangle rect : patches) {
547 if (patches.size() == 0) {
595 r = patches.get(patchIndex++);
689 checkButton = new JButton("Show bad patches");
738 checkButton.setText("Hide bad patches");
740 checkButton.setText("Show bad patches");
752 for (Rectangle patch : patches) {
1127 List<Pair<Integer>> patches = new ArrayList<Pair<Integer>>(); local
    [all...]
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatch.java 431 List<Pair<Integer>> patches = new ArrayList<Pair<Integer>>(); local
438 patches.add(new Pair<Integer>(lastIndex, i));
450 patches.add(new Pair<Integer>(lastIndex, pixels.length - 1));
455 if (patches.size() == 0) {
456 patches.add(new Pair<Integer>(1, pixels.length - 1));
461 return new Pair<List<Pair<Integer>>>(fixed, patches);
  /development/pdk/docs/source/
source_toc.cs 27 <li><a href="<?cs var:toroot ?>source/submit-patches.html">Submitting Patches</a></li>
  /ndk/build/tools/
rebuild-all-prebuilt.sh 139 PATCHES_DIR=$PROGDIR/patches
  /external/strace/
strace.spec 239 - disable s390 patches, they are already included
246 - port s390 patches from IBM
255 - clean up conflicting patches. This happened only
295 - version 4.2 (why are we keeping all these patches around?)
319 - strace 3.1 patches carried along for now.
  /external/iproute2/doc/
api-ip6-flowlabels.tex 128 memory bandwidth is not a good idea. Such patches are acceptable
  /external/blktrace/doc/
blktrace.tex 37 kernel event logging interfaces, and patches to areas within the block
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-unpack-code.js 6 THIS FILE IS AUTOMATICALLY GENERATED. If creating patches, please
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js 6 THIS FILE IS AUTOMATICALLY GENERATED. If creating patches, please
    [all...]
  /external/bison/
configure     [all...]

Completed in 450 milliseconds