HomeSort by relevance Sort by last modified time
    Searched defs:Attachment (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
AttachmentUnix.cpp 28 #include "Attachment.h"
35 Attachment::Attachment(int fileDescriptor, size_t size)
44 void Attachment::dispose()
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
postdiffforrevert.py 29 from webkitpy.common.net.bugzilla import Attachment
41 webkit-patch land-attachment ATTACHMENT_ID --ignore-builders\n\n\
42 where ATTACHMENT_ID is the ID of this attachment."
46 "%s%s" % (Attachment.rollout_preamble, state["revision"]),
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Attachment.cpp 27 #include "Attachment.h"
34 Attachment::Attachment()
40 Attachment::Attachment(mach_port_name_t port, mach_msg_type_name_t disposition)
47 Attachment::Attachment(void* address, mach_msg_size_t size, mach_msg_copy_options_t copyOptions, bool deallocate)
56 void Attachment::release()
62 void Attachment::encode(ArgumentEncoder* encoder) const
67 bool Attachment::decode(ArgumentDecoder* decoder, Attachment& attachment
    [all...]
Attachment.h 34 class Attachment {
36 Attachment();
49 Attachment(mach_port_name_t port, mach_msg_type_name_t disposition);
50 Attachment(void* address, mach_msg_size_t size, mach_msg_copy_options_t copyOptions, bool deallocate);
52 Attachment(int fileDescriptor, size_t);
79 static bool decode(ArgumentDecoder*, Attachment&);
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
__init__.py 6 # Unclear if Bug and Attachment need to be public classes.
8 from .attachment import Attachment
bug.py 31 from .attachment import Attachment
86 attachments = filter(lambda attachment:
87 not attachment["is_obsolete"], attachments)
88 return [Attachment(attachment, self) for attachment in attachments]
attachment.py 34 class Attachment(object):
102 log("Warning, attachment %s on bug %s has invalid %s (%s)" % (
bugzilla.py 41 from .attachment import Attachment
138 attachment_href = re.compile("attachment.cgi\?id=\d+&action=review")
265 attachment,
269 attachment[flag_name] = flag['status']
271 attachment[result_key] = flag['setter']
299 attachment = {}
300 attachment['bug_id'] = bug_id
301 attachment['is_obsolete'] = (element.has_key('isobsolete') and element['isobsolete'] == "1")
302 attachment['is_patch'] = (element.has_key('ispatch') and element['ispatch'] == "1"
    [all...]
  /external/webkit/Tools/QueueStatusServer/handlers/
releasepatch.py 33 from model.attachment import Attachment
50 attachment = Attachment(attachment_id)
51 last_status = attachment.status_for_queue(queue)
statusbubble.py 34 from model.attachment import Attachment
42 def _build_bubble(self, queue, attachment):
43 queue_status = attachment.status_for_queue(queue)
46 "attachment_id": attachment.id,
47 "queue_position": attachment.position_in_queue(queue),
48 "state": attachment.state_from_queue_status(queue_status) if queue_status else "none",
54 attachment = Attachment(int(attachment_id))
55 bubbles = [self._build_bubble(queue, attachment) for queue in self._queues_to_display
    [all...]
dashboard.py 34 from model.attachment import Attachment
43 def _build_bubble(self, attachment, queue):
44 queue_status = attachment.status_for_queue(queue)
46 "status_class": attachment.state_from_queue_status(queue_status) if queue_status else "none",
51 def _build_row(self, attachment):
53 "bug_id": attachment.bug_id(),
54 "attachment_id": attachment.id,
55 "bubbles": [self._build_bubble(attachment, queue) for queue in self._ordered_queues],
62 "rows": [self._build_row(attachment) for attachment in Attachment.recent(limit=25)]
    [all...]
submittoews.py 33 from model.attachment import Attachment
41 def _should_add_to_ews_queue(self, queue, attachment):
46 latest_status = attachment.status_for_queue(queue)
56 def _add_attachment_to_ews_queues(self, attachment):
58 if self._should_add_to_ews_queue(queue, attachment):
59 queue.work_items().add_work_item(attachment.id)
63 attachment = Attachment(attachment_id)
64 self._add_attachment_to_ews_queues(attachment)
    [all...]
updatestatus.py 34 from model.attachment import Attachment
65 Attachment.dirty(queue_status.active_patch_id)
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queuestest.py 31 from webkitpy.common.net.bugzilla import Attachment
queues_unittest.py 33 from webkitpy.common.net.bugzilla import Attachment
128 "process_work_item": """Warning, attachment 128 on bug 42 has invalid committer (non-committer@example.com)
129 Warning, attachment 128 on bug 42 has invalid committer (non-committer@example.com)
130 MOCK setting flag 'commit-queue' to '-' on attachment '128' with comment 'Rejecting attachment 128 from commit-queue.' and additional comment 'non-committer@example.com does not have committer permissions according to http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/common/config/committers.py.
154 expected_stdout = "MOCK: fetch_attachment: 2 is not a known attachment id\n" # A mock-only message to prevent us from making mistakes.
201 return Attachment(attachment_dictionary, None)
222 "handle_unexpected_error": "MOCK setting flag 'commit-queue' to '-' on attachment '197' with comment 'Rejecting attachment 197 from commit-queue.' and additional comment 'Mock error message'\n",
235 MOCK setting flag 'commit-queue' to '-' on attachment '197' with comment 'Rejecting attachment 197 from commit-queue.' and additional comment 'MOCK scri (…)
    [all...]
queues.py 42 from webkitpy.common.net.bugzilla import Attachment
217 patch = Attachment({'id': patch_id}, None)
454 message = "Attachment %s did not pass %s:\n\n%s\n\nIf any of these errors are false positives, please file a bug against check-webkit-style." % (state["patch"].id(), cls.name, script_error.message_with_output(output_limit=3*1024))
  /external/webkit/Tools/QueueStatusServer/model/
attachment.py 38 class Attachment(object):
41 memcache.delete(str(attachment_id), namespace="attachment-summary")
69 self._summary = memcache.get(str(self.id), namespace="attachment-summary")
73 memcache.set(str(self.id), self._summary, namespace="attachment-summary")
120 # We don't have any record of this attachment.
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm_unittest.py 50 from webkitpy.common.net.bugzilla import Attachment # FIXME: This should not be needed
279 # FIXME: This code is brittle if the Attachment API changes.
280 attachment = Attachment({"bug_id": 12345}, None)
281 attachment.contents = lambda: patch_contents
284 attachment.reviewer = lambda: joe_cool
286 return attachment
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 35 from webkitpy.common.net.bugzilla import Bug, Attachment
313 print "MOCK: fetch_attachment: %s is not a known attachment id" % attachment_id
316 for attachment in bug.attachments(include_obsolete=True):
317 if attachment.id() == int(attachment_id):
318 return attachment
338 log("MOCK setting flag '%s' to '%s' on attachment '%s' with comment '%s' and additional comment '%s'" % (
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 494 // Boolean, no attachment = 0, attachment = 1
    [all...]

Completed in 199 milliseconds