Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/mozilla/ipc/ProtocolUtils.h
Line
Count
Source (jump to first uncovered line)
1
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2
 * vim: sw=4 ts=4 et :
3
 */
4
/* This Source Code Form is subject to the terms of the Mozilla Public
5
 * License, v. 2.0. If a copy of the MPL was not distributed with this
6
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7
8
#ifndef mozilla_ipc_ProtocolUtils_h
9
#define mozilla_ipc_ProtocolUtils_h 1
10
11
#include "base/id_map.h"
12
#include "base/process.h"
13
#include "base/process_util.h"
14
#include "chrome/common/ipc_message_utils.h"
15
16
#include "prenv.h"
17
18
#include "IPCMessageStart.h"
19
#include "mozilla/AlreadyAddRefed.h"
20
#include "mozilla/Attributes.h"
21
#include "mozilla/ipc/ByteBuf.h"
22
#include "mozilla/ipc/FileDescriptor.h"
23
#include "mozilla/ipc/MessageChannel.h"
24
#include "mozilla/ipc/Shmem.h"
25
#include "mozilla/ipc/Transport.h"
26
#include "mozilla/ipc/MessageLink.h"
27
#include "mozilla/recordreplay/ChildIPC.h"
28
#include "mozilla/LinkedList.h"
29
#include "mozilla/Maybe.h"
30
#include "mozilla/MozPromise.h"
31
#include "mozilla/Mutex.h"
32
#include "mozilla/NotNull.h"
33
#include "mozilla/Scoped.h"
34
#include "mozilla/UniquePtr.h"
35
#include "MainThreadUtils.h"
36
#include "nsICrashReporter.h"
37
#include "nsILabelableRunnable.h"
38
39
#if defined(ANDROID) && defined(DEBUG)
40
#include <android/log.h>
41
#endif
42
43
template<typename T> class nsTHashtable;
44
template<typename T> class nsPtrHashKey;
45
46
// WARNING: this takes into account the private, special-message-type
47
// enum in ipc_channel.h.  They need to be kept in sync.
48
namespace {
49
// XXX the max message ID is actually kuint32max now ... when this
50
// changed, the assumptions of the special message IDs changed in that
51
// they're not carving out messages from likely-unallocated space, but
52
// rather carving out messages from the end of space allocated to
53
// protocol 0.  Oops!  We can get away with this until protocol 0
54
// starts approaching its 65,536th message.
55
enum {
56
    BUILD_IDS_MATCH_MESSAGE_TYPE   = kuint16max - 8,
57
    BUILD_ID_MESSAGE_TYPE          = kuint16max - 7, // unused
58
    CHANNEL_OPENED_MESSAGE_TYPE    = kuint16max - 6,
59
    SHMEM_DESTROYED_MESSAGE_TYPE   = kuint16max - 5,
60
    SHMEM_CREATED_MESSAGE_TYPE     = kuint16max - 4,
61
    GOODBYE_MESSAGE_TYPE           = kuint16max - 3,
62
    CANCEL_MESSAGE_TYPE            = kuint16max - 2,
63
64
    // kuint16max - 1 is used by ipc_channel.h.
65
};
66
67
} // namespace
68
69
class nsIEventTarget;
70
71
namespace mozilla {
72
class SchedulerGroup;
73
74
namespace dom {
75
class ContentParent;
76
} // namespace dom
77
78
namespace net {
79
class NeckoParent;
80
} // namespace net
81
82
namespace ipc {
83
84
#ifdef FUZZING
85
class ProtocolFuzzerHelper;
86
#endif
87
88
class MessageChannel;
89
90
#ifdef XP_WIN
91
const base::ProcessHandle kInvalidProcessHandle = INVALID_HANDLE_VALUE;
92
93
// In theory, on Windows, this is a valid process ID, but in practice they are
94
// currently divisible by four. Process IDs share the kernel handle allocation
95
// code and they are guaranteed to be divisible by four.
96
// As this could change for process IDs we shouldn't generally rely on this
97
// property, however even if that were to change, it seems safe to rely on this
98
// particular value never being used.
99
const base::ProcessId kInvalidProcessId = kuint32max;
100
#else
101
const base::ProcessHandle kInvalidProcessHandle = -1;
102
const base::ProcessId kInvalidProcessId = -1;
103
#endif
104
105
// Scoped base::ProcessHandle to ensure base::CloseProcessHandle is called.
106
struct ScopedProcessHandleTraits
107
{
108
  typedef base::ProcessHandle type;
109
110
  static type empty()
111
0
  {
112
0
    return kInvalidProcessHandle;
113
0
  }
114
115
  static void release(type aProcessHandle)
116
0
  {
117
0
    if (aProcessHandle && aProcessHandle != kInvalidProcessHandle) {
118
0
      base::CloseProcessHandle(aProcessHandle);
119
0
    }
120
0
  }
121
};
122
typedef mozilla::Scoped<ScopedProcessHandleTraits> ScopedProcessHandle;
123
124
class ProtocolFdMapping;
125
class ProtocolCloneContext;
126
127
// Used to pass references to protocol actors across the wire.
128
// Actors created on the parent-side have a positive ID, and actors
129
// allocated on the child side have a negative ID.
130
struct ActorHandle
131
{
132
    int mId;
133
};
134
135
// What happens if Interrupt calls race?
136
enum RacyInterruptPolicy {
137
    RIPError,
138
    RIPChildWins,
139
    RIPParentWins
140
};
141
142
143
class IToplevelProtocol;
144
145
class IProtocol : public HasResultCodes
146
{
147
#ifdef FUZZING
148
  friend class mozilla::ipc::ProtocolFuzzerHelper;
149
#endif
150
151
public:
152
    enum ActorDestroyReason {
153
        FailedConstructor,
154
        Deletion,
155
        AncestorDeletion,
156
        NormalShutdown,
157
        AbnormalShutdown
158
    };
159
160
    // A lot of the functionality of IProtocol only differs between toplevel
161
    // protocols (IToplevelProtocol) and managed protocols (everything else).
162
    // If we put such functionality in IProtocol via virtual methods, that
163
    // means that *every* protocol inherits that functionality through said
164
    // virtual methods, then every protocol needs a (largely redundant)
165
    // entry in its vtable.  That redundancy adds up quickly with several
166
    // hundred protocols.
167
    //
168
    // This class (and its two subclasses) ensure that we don't have a bunch
169
    // of redundant entries in protocol vtables: we have a single vtable per
170
    // subclass, and then each protocol has its own instance of one of the
171
    // subclasses.  This setup makes things a bit slower, but the space
172
    // savings are worth it.
173
    class ProtocolState
174
    {
175
    public:
176
        ProtocolState() : mChannel(nullptr) {}
177
        virtual ~ProtocolState() = default;
178
179
        // Shared memory functions.
180
        virtual Shmem::SharedMemory* CreateSharedMemory(
181
            size_t, SharedMemory::SharedMemoryType, bool, int32_t*) = 0;
182
        virtual Shmem::SharedMemory* LookupSharedMemory(int32_t) = 0;
183
        virtual bool IsTrackingSharedMemory(Shmem::SharedMemory*) = 0;
184
        virtual bool DestroySharedMemory(Shmem&) = 0;
185
186
        // Protocol management functions.
187
        virtual int32_t Register(IProtocol*) = 0;
188
        virtual int32_t RegisterID(IProtocol*, int32_t) = 0;
189
        virtual IProtocol* Lookup(int32_t) = 0;
190
        virtual void Unregister(int32_t) = 0;
191
192
        // Returns the event target set by SetEventTargetForActor() if available.
193
        virtual nsIEventTarget* GetActorEventTarget() = 0;
194
195
        virtual void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) = 0;
196
        virtual void ReplaceEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) = 0;
197
198
        virtual already_AddRefed<nsIEventTarget>
199
        GetActorEventTarget(IProtocol* aActor) = 0;
200
201
        virtual const MessageChannel* GetIPCChannel() const = 0;
202
        virtual MessageChannel* GetIPCChannel() = 0;
203
204
        // XXX we have this weird setup where ProtocolState has an mChannel
205
        // member, but it (probably?) only gets set for protocols that have
206
        // a manager.  That is, for toplevel protocols, this member is dead
207
        // weight and should be removed, since toplevel protocols maintain
208
        // their own channel.
209
        void SetIPCChannel(MessageChannel* aChannel) { mChannel = aChannel; }
210
211
    protected:
212
        MessageChannel* mChannel;
213
    };
214
215
    // Managed protocols just forward all of their operations to the topmost
216
    // managing protocol.
217
    class ManagedState final : public ProtocolState
218
    {
219
    public:
220
        explicit ManagedState(IProtocol* aProtocol)
221
            : ProtocolState()
222
            , mProtocol(aProtocol)
223
0
        {}
224
225
        Shmem::SharedMemory* CreateSharedMemory(
226
            size_t, SharedMemory::SharedMemoryType, bool, int32_t*) override;
227
        Shmem::SharedMemory* LookupSharedMemory(int32_t) override;
228
        bool IsTrackingSharedMemory(Shmem::SharedMemory*) override;
229
        bool DestroySharedMemory(Shmem&) override;
230
231
        int32_t Register(IProtocol*) override;
232
        int32_t RegisterID(IProtocol*, int32_t) override;
233
        IProtocol* Lookup(int32_t) override;
234
        void Unregister(int32_t) override;
235
236
        nsIEventTarget* GetActorEventTarget() override;
237
        void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
238
        void ReplaceEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
239
        already_AddRefed<nsIEventTarget> GetActorEventTarget(IProtocol* aActor) override;
240
241
        const MessageChannel* GetIPCChannel() const override;
242
        MessageChannel* GetIPCChannel() override;
243
244
    private:
245
        IProtocol* const mProtocol;
246
    };
247
248
    typedef base::ProcessId ProcessId;
249
    typedef IPC::Message Message;
250
    typedef IPC::MessageInfo MessageInfo;
251
252
    explicit IProtocol(Side aSide)
253
        : IProtocol(aSide, MakeUnique<ManagedState>(this))
254
0
    {}
255
256
    int32_t Register(IProtocol* aRouted)
257
    {
258
        return mState->Register(aRouted);
259
    }
260
    int32_t RegisterID(IProtocol* aRouted, int32_t aId)
261
    {
262
        return mState->RegisterID(aRouted, aId);
263
    }
264
    IProtocol* Lookup(int32_t aId)
265
    {
266
        return mState->Lookup(aId);
267
    }
268
    void Unregister(int32_t aId)
269
    {
270
        return mState->Unregister(aId);
271
    }
272
273
    virtual void RemoveManagee(int32_t, IProtocol*) = 0;
274
275
    Shmem::SharedMemory* CreateSharedMemory(
276
        size_t aSize, SharedMemory::SharedMemoryType aType, bool aUnsafe, int32_t* aId)
277
    {
278
        return mState->CreateSharedMemory(aSize, aType, aUnsafe, aId);
279
    }
280
    Shmem::SharedMemory* LookupSharedMemory(int32_t aId)
281
    {
282
        return mState->LookupSharedMemory(aId);
283
    }
284
    bool IsTrackingSharedMemory(Shmem::SharedMemory* aSegment)
285
    {
286
        return mState->IsTrackingSharedMemory(aSegment);
287
    }
288
    bool DestroySharedMemory(Shmem& aShmem)
289
    {
290
        return mState->DestroySharedMemory(aShmem);
291
    }
292
293
    MessageChannel* GetIPCChannel()
294
    {
295
        return mState->GetIPCChannel();
296
    }
297
    const MessageChannel* GetIPCChannel() const
298
    {
299
        return mState->GetIPCChannel();
300
    }
301
    void SetMiddlemanIPCChannel(MessageChannel* aChannel)
302
0
    {
303
0
        // Middleman processes sometimes need to change the channel used by a
304
0
        // protocol.
305
0
        MOZ_RELEASE_ASSERT(recordreplay::IsMiddleman());
306
0
        mState->SetIPCChannel(aChannel);
307
0
    }
308
309
    // XXX odd ducks, acknowledged
310
    virtual ProcessId OtherPid() const;
311
    Side GetSide() const { return mSide; }
312
313
    void FatalError(const char* const aErrorMsg) const;
314
    virtual void HandleFatalError(const char* aErrorMsg) const;
315
316
    Maybe<IProtocol*> ReadActor(const IPC::Message* aMessage, PickleIterator* aIter, bool aNullable,
317
                                const char* aActorDescription, int32_t aProtocolTypeId);
318
319
    virtual Result OnMessageReceived(const Message& aMessage) = 0;
320
    virtual Result OnMessageReceived(const Message& aMessage, Message *& aReply) = 0;
321
    virtual Result OnCallReceived(const Message& aMessage, Message *& aReply) = 0;
322
323
    virtual int32_t GetProtocolTypeId() = 0;
324
325
    int32_t Id() const { return mId; }
326
    IProtocol* Manager() const { return mManager; }
327
328
    bool AllocShmem(size_t aSize, Shmem::SharedMemory::SharedMemoryType aType, Shmem* aOutMem);
329
    bool AllocUnsafeShmem(size_t aSize, Shmem::SharedMemory::SharedMemoryType aType, Shmem* aOutMem);
330
    bool DeallocShmem(Shmem& aMem);
331
332
    // Sets an event target to which all messages for aActor will be
333
    // dispatched. This method must be called before right before the SendPFoo
334
    // message for aActor is sent. And SendPFoo *must* be called if
335
    // SetEventTargetForActor is called. The receiver when calling
336
    // SetEventTargetForActor must be the actor that will be the manager for
337
    // aActor.
338
    void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget);
339
340
    // Replace the event target for the messages of aActor. There must not be
341
    // any messages of aActor in the task queue, or we might run into some
342
    // unexpected behavior.
343
    void ReplaceEventTargetForActor(IProtocol* aActor,
344
                                    nsIEventTarget* aEventTarget);
345
346
    nsIEventTarget* GetActorEventTarget();
347
    already_AddRefed<nsIEventTarget> GetActorEventTarget(IProtocol* aActor);
348
349
protected:
350
    IProtocol(Side aSide, UniquePtr<ProtocolState> aState)
351
        : mId(0)
352
        , mSide(aSide)
353
        , mManager(nullptr)
354
        , mState(std::move(aState))
355
    {}
356
357
    friend class IToplevelProtocol;
358
359
    void SetId(int32_t aId) { mId = aId; }
360
0
    void ResetManager() { mManager = nullptr; }
361
    // We have separate functions because the accessibility code manually
362
    // calls SetManager.
363
    void SetManager(IProtocol* aManager);
364
365
    // Sets the manager for the protocol and registers the protocol with
366
    // its manager, setting up channels for the protocol as well.  Not
367
    // for use outside of IPDL.
368
    void SetManagerAndRegister(IProtocol* aManager);
369
    void SetManagerAndRegister(IProtocol* aManager, int32_t aId);
370
371
    static const int32_t kNullActorId = 0;
372
    static const int32_t kFreedActorId = 1;
373
374
private:
375
    int32_t mId;
376
    Side mSide;
377
    IProtocol* mManager;
378
    UniquePtr<ProtocolState> mState;
379
};
380
381
typedef IPCMessageStart ProtocolId;
382
383
0
#define IPC_OK() mozilla::ipc::IPCResult::Ok()
384
0
#define IPC_FAIL(actor, why) mozilla::ipc::IPCResult::Fail(WrapNotNull(actor), __func__, (why))
385
0
#define IPC_FAIL_NO_REASON(actor) mozilla::ipc::IPCResult::Fail(WrapNotNull(actor), __func__)
386
387
/**
388
 * All message deserializer and message handler should return this
389
 * type via above macros. We use a less generic name here to avoid
390
 * conflict with mozilla::Result because we have quite a few using
391
 * namespace mozilla::ipc; in the code base.
392
 */
393
class IPCResult {
394
public:
395
0
    static IPCResult Ok() { return IPCResult(true); }
396
    static IPCResult Fail(NotNull<IProtocol*> aActor, const char* aWhere, const char* aWhy = "");
397
0
    MOZ_IMPLICIT operator bool() const { return mSuccess; }
398
private:
399
0
    explicit IPCResult(bool aResult) : mSuccess(aResult) {}
400
    bool mSuccess;
401
};
402
403
template<class PFooSide>
404
class Endpoint;
405
406
/**
407
 * All top-level protocols should inherit this class.
408
 *
409
 * IToplevelProtocol tracks all top-level protocol actors created from
410
 * this protocol actor.
411
 */
412
class IToplevelProtocol : public IProtocol
413
{
414
    template<class PFooSide> friend class Endpoint;
415
416
protected:
417
    explicit IToplevelProtocol(const char* aName, ProtocolId aProtoId,
418
                               Side aSide);
419
    ~IToplevelProtocol();
420
421
public:
422
    enum ProcessIdState {
423
        eUnstarted,
424
        ePending,
425
        eReady,
426
        eError
427
    };
428
429
    class ToplevelState final : public ProtocolState
430
    {
431
#ifdef FUZZING
432
      friend class mozilla::ipc::ProtocolFuzzerHelper;
433
#endif
434
435
    public:
436
        ToplevelState(const char* aName, IToplevelProtocol* aProtocol, Side aSide);
437
438
        Shmem::SharedMemory* CreateSharedMemory(
439
            size_t, SharedMemory::SharedMemoryType, bool, int32_t*) override;
440
        Shmem::SharedMemory* LookupSharedMemory(int32_t) override;
441
        bool IsTrackingSharedMemory(Shmem::SharedMemory*) override;
442
        bool DestroySharedMemory(Shmem&) override;
443
444
        void DeallocShmems();
445
446
        bool ShmemCreated(const Message& aMsg);
447
        bool ShmemDestroyed(const Message& aMsg);
448
449
        int32_t Register(IProtocol*) override;
450
        int32_t RegisterID(IProtocol*, int32_t) override;
451
        IProtocol* Lookup(int32_t) override;
452
        void Unregister(int32_t) override;
453
454
        nsIEventTarget* GetActorEventTarget() override;
455
        void SetEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
456
        void ReplaceEventTargetForActor(IProtocol* aActor, nsIEventTarget* aEventTarget) override;
457
        already_AddRefed<nsIEventTarget> GetActorEventTarget(IProtocol* aActor) override;
458
459
        virtual already_AddRefed<nsIEventTarget>
460
        GetMessageEventTarget(const Message& aMsg);
461
462
        const MessageChannel* GetIPCChannel() const override;
463
        MessageChannel* GetIPCChannel() override;
464
465
    private:
466
        IToplevelProtocol* const mProtocol;
467
        IDMap<IProtocol*> mActorMap;
468
        int32_t mLastRouteId;
469
        IDMap<Shmem::SharedMemory*> mShmemMap;
470
        Shmem::id_t mLastShmemId;
471
472
        Mutex mEventTargetMutex;
473
        IDMap<nsCOMPtr<nsIEventTarget>> mEventTargetMap;
474
475
        MessageChannel mChannel;
476
    };
477
478
    using SchedulerGroupSet = nsILabelableRunnable::SchedulerGroupSet;
479
480
    void SetTransport(UniquePtr<Transport> aTrans)
481
    {
482
        mTrans = std::move(aTrans);
483
    }
484
485
0
    Transport* GetTransport() const { return mTrans.get(); }
486
487
0
    ProtocolId GetProtocolId() const { return mProtocolId; }
488
489
    base::ProcessId OtherPid() const final;
490
    void SetOtherProcessId(base::ProcessId aOtherPid,
491
                           ProcessIdState aState = ProcessIdState::eReady);
492
493
    bool TakeMinidump(nsIFile** aDump, uint32_t* aSequence);
494
495
    virtual void OnChannelClose() = 0;
496
    virtual void OnChannelError() = 0;
497
    virtual void ProcessingError(Result aError, const char* aMsgName) {}
498
0
    virtual void OnChannelConnected(int32_t peer_pid) {}
499
500
    bool Open(mozilla::ipc::Transport* aTransport,
501
              base::ProcessId aOtherPid,
502
              MessageLoop* aThread = nullptr,
503
              mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
504
505
    bool Open(MessageChannel* aChannel,
506
              MessageLoop* aMessageLoop,
507
              mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
508
509
    bool Open(MessageChannel* aChannel,
510
              nsIEventTarget* aEventTarget,
511
              mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
512
513
    bool OpenWithAsyncPid(mozilla::ipc::Transport* aTransport,
514
                          MessageLoop* aThread = nullptr,
515
                          mozilla::ipc::Side aSide = mozilla::ipc::UnknownSide);
516
517
    void Close();
518
519
    void SetReplyTimeoutMs(int32_t aTimeoutMs);
520
521
0
    void DeallocShmems() { DowncastState()->DeallocShmems(); }
522
523
0
    bool ShmemCreated(const Message& aMsg) { return DowncastState()->ShmemCreated(aMsg); }
524
0
    bool ShmemDestroyed(const Message& aMsg) { return DowncastState()->ShmemDestroyed(aMsg); }
525
526
    virtual bool ShouldContinueFromReplyTimeout() {
527
        return false;
528
    }
529
530
    // WARNING: This function is called with the MessageChannel monitor held.
531
0
    virtual void IntentionalCrash() {
532
0
        MOZ_CRASH("Intentional IPDL crash");
533
0
    }
534
535
    // The code here is only useful for fuzzing. It should not be used for any
536
    // other purpose.
537
#ifdef DEBUG
538
    // Returns true if we should simulate a timeout.
539
    // WARNING: This is a testing-only function that is called with the
540
    // MessageChannel monitor held. Don't do anything fancy here or we could
541
    // deadlock.
542
    virtual bool ArtificialTimeout() {
543
        return false;
544
    }
545
546
    // Returns true if we want to cause the worker thread to sleep with the
547
    // monitor unlocked.
548
    virtual bool NeedArtificialSleep() {
549
        return false;
550
    }
551
552
    // This function should be implemented to sleep for some amount of time on
553
    // the worker thread. Will only be called if NeedArtificialSleep() returns
554
    // true.
555
    virtual void ArtificialSleep() {}
556
#else
557
0
    bool ArtificialTimeout() { return false; }
558
    bool NeedArtificialSleep() { return false; }
559
    void ArtificialSleep() {}
560
#endif
561
562
    virtual void EnteredCxxStack() {}
563
    virtual void ExitedCxxStack() {}
564
    virtual void EnteredCall() {}
565
    virtual void ExitedCall() {}
566
567
    bool IsOnCxxStack() const;
568
569
    virtual RacyInterruptPolicy MediateInterruptRace(const MessageInfo& parent,
570
                                                     const MessageInfo& child)
571
0
    {
572
0
        return RIPChildWins;
573
0
    }
574
575
    /**
576
     * Return true if windows messages can be handled while waiting for a reply
577
     * to a sync IPDL message.
578
     */
579
0
    virtual bool HandleWindowsMessages(const Message& aMsg) const { return true; }
580
581
0
    virtual void OnEnteredSyncSend() {
582
0
    }
583
0
    virtual void OnExitedSyncSend() {
584
0
    }
585
586
0
    virtual void ProcessRemoteNativeEventsInInterruptCall() {
587
0
    }
588
589
    // Override this method in top-level protocols to change the SchedulerGroups
590
    // that a message might affect. This should be used only as a last resort
591
    // when it's difficult to determine an EventTarget ahead of time. See the
592
    // comment in nsILabelableRunnable.h for more information.
593
    virtual bool
594
    GetMessageSchedulerGroups(const Message& aMsg, SchedulerGroupSet& aGroups)
595
0
    {
596
0
        return false;
597
0
    }
598
599
    // This method is only used for collecting telemetry bits in various places,
600
    // and we shouldn't pay the overhead of having it in protocol vtables when
601
    // it's not being used.
602
#ifdef EARLY_BETA_OR_EARLIER
603
0
    virtual void OnChannelReceivedMessage(const Message& aMsg) {}
604
#endif
605
606
0
    bool IsMainThreadProtocol() const { return mIsMainThreadProtocol; }
607
    void SetIsMainThreadProtocol() { mIsMainThreadProtocol = NS_IsMainThread(); }
608
609
    already_AddRefed<nsIEventTarget>
610
    GetMessageEventTarget(const Message& aMsg)
611
    {
612
        return DowncastState()->GetMessageEventTarget(aMsg);
613
    }
614
615
protected:
616
    ToplevelState* DowncastState() const
617
    {
618
        return static_cast<ToplevelState*>(mState.get());
619
    }
620
621
    // Override this method in top-level protocols to change the event target
622
    // for a new actor (and its sub-actors).
623
    virtual already_AddRefed<nsIEventTarget>
624
0
    GetConstructedEventTarget(const Message& aMsg) { return nullptr; }
625
626
    // Override this method in top-level protocols to change the event target
627
    // for specific messages.
628
    virtual already_AddRefed<nsIEventTarget>
629
0
    GetSpecificMessageEventTarget(const Message& aMsg) { return nullptr; }
630
631
    // This monitor protects mOtherPid and mOtherPidState. All other fields
632
    // should only be accessed on the worker thread.
633
    mutable mozilla::Monitor mMonitor;
634
  private:
635
    base::ProcessId OtherPidMaybeInvalid() const;
636
637
    ProtocolId mProtocolId;
638
    UniquePtr<Transport> mTrans;
639
    base::ProcessId mOtherPid;
640
    ProcessIdState mOtherPidState;
641
    bool mIsMainThreadProtocol;
642
};
643
644
class IShmemAllocator
645
{
646
public:
647
  virtual bool AllocShmem(size_t aSize,
648
                          mozilla::ipc::SharedMemory::SharedMemoryType aShmType,
649
                          mozilla::ipc::Shmem* aShmem) = 0;
650
  virtual bool AllocUnsafeShmem(size_t aSize,
651
                                mozilla::ipc::SharedMemory::SharedMemoryType aShmType,
652
                                mozilla::ipc::Shmem* aShmem) = 0;
653
  virtual bool DeallocShmem(mozilla::ipc::Shmem& aShmem) = 0;
654
};
655
656
#define FORWARD_SHMEM_ALLOCATOR_TO(aImplClass) \
657
  virtual bool AllocShmem(size_t aSize, \
658
                          mozilla::ipc::SharedMemory::SharedMemoryType aShmType, \
659
                          mozilla::ipc::Shmem* aShmem) override \
660
0
  { return aImplClass::AllocShmem(aSize, aShmType, aShmem); } \
Unexecuted instantiation: mozilla::dom::ContentBridgeParent::AllocShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::ContentChild::AllocShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::ContentParent::AllocShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::TabChild::AllocShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::ContentBridgeChild::AllocShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::ProfilerChild::AllocShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
661
  virtual bool AllocUnsafeShmem(size_t aSize, \
662
                                mozilla::ipc::SharedMemory::SharedMemoryType aShmType, \
663
                                mozilla::ipc::Shmem* aShmem) override \
664
0
  { return aImplClass::AllocUnsafeShmem(aSize, aShmType, aShmem); } \
Unexecuted instantiation: mozilla::dom::ContentBridgeParent::AllocUnsafeShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::ContentChild::AllocUnsafeShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::ContentParent::AllocUnsafeShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::TabChild::AllocUnsafeShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::dom::ContentBridgeChild::AllocUnsafeShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
Unexecuted instantiation: mozilla::ProfilerChild::AllocUnsafeShmem(unsigned long, mozilla::ipc::SharedMemory::SharedMemoryType, mozilla::ipc::Shmem*)
665
  virtual bool DeallocShmem(mozilla::ipc::Shmem& aShmem) override \
666
0
  { return aImplClass::DeallocShmem(aShmem); }
Unexecuted instantiation: mozilla::dom::ContentBridgeParent::DeallocShmem(mozilla::ipc::Shmem&)
Unexecuted instantiation: mozilla::dom::ContentChild::DeallocShmem(mozilla::ipc::Shmem&)
Unexecuted instantiation: mozilla::dom::ContentParent::DeallocShmem(mozilla::ipc::Shmem&)
Unexecuted instantiation: mozilla::dom::TabChild::DeallocShmem(mozilla::ipc::Shmem&)
Unexecuted instantiation: mozilla::dom::ContentBridgeChild::DeallocShmem(mozilla::ipc::Shmem&)
Unexecuted instantiation: mozilla::ProfilerChild::DeallocShmem(mozilla::ipc::Shmem&)
667
668
inline bool
669
LoggingEnabled()
670
0
{
671
0
#if defined(DEBUG) || defined(FUZZING)
672
0
    return !!PR_GetEnv("MOZ_IPC_MESSAGE_LOG");
673
#else
674
    return false;
675
#endif
676
}
677
678
inline bool
679
LoggingEnabledFor(const char *aTopLevelProtocol)
680
0
{
681
0
#if defined(DEBUG) || defined(FUZZING)
682
0
    const char *filter = PR_GetEnv("MOZ_IPC_MESSAGE_LOG");
683
0
    if (!filter) {
684
0
        return false;
685
0
    }
686
0
    return strcmp(filter, "1") == 0 || strcmp(filter, aTopLevelProtocol) == 0;
687
#else
688
    return false;
689
#endif
690
}
691
692
enum class MessageDirection {
693
    eSending,
694
    eReceiving,
695
};
696
697
MOZ_NEVER_INLINE void
698
LogMessageForProtocol(const char* aTopLevelProtocol, base::ProcessId aOtherPid,
699
                      const char* aContextDescription,
700
                      uint32_t aMessageId,
701
                      MessageDirection aDirection);
702
703
MOZ_NEVER_INLINE void
704
ProtocolErrorBreakpoint(const char* aMsg);
705
706
// The code generator calls this function for errors which come from the
707
// methods of protocols.  Doing this saves codesize by making the error
708
// cases significantly smaller.
709
MOZ_NEVER_INLINE void
710
FatalError(const char* aMsg, bool aIsParent);
711
712
// The code generator calls this function for errors which are not
713
// protocol-specific: errors in generated struct methods or errors in
714
// transition functions, for instance.  Doing this saves codesize by
715
// by making the error cases significantly smaller.
716
MOZ_NEVER_INLINE void
717
LogicError(const char* aMsg);
718
719
MOZ_NEVER_INLINE void
720
ActorIdReadError(const char* aActorDescription);
721
722
MOZ_NEVER_INLINE void
723
BadActorIdError(const char* aActorDescription);
724
725
MOZ_NEVER_INLINE void
726
ActorLookupError(const char* aActorDescription);
727
728
MOZ_NEVER_INLINE void
729
MismatchedActorTypeError(const char* aActorDescription);
730
731
MOZ_NEVER_INLINE void
732
UnionTypeReadError(const char* aUnionName);
733
734
MOZ_NEVER_INLINE void
735
ArrayLengthReadError(const char* aElementName);
736
737
MOZ_NEVER_INLINE void
738
SentinelReadError(const char* aElementName);
739
740
struct PrivateIPDLInterface {};
741
742
nsresult
743
Bridge(const PrivateIPDLInterface&,
744
       MessageChannel*, base::ProcessId, MessageChannel*, base::ProcessId,
745
       ProtocolId, ProtocolId);
746
747
bool
748
Open(const PrivateIPDLInterface&,
749
     MessageChannel*, base::ProcessId, Transport::Mode,
750
     ProtocolId, ProtocolId);
751
752
bool
753
UnpackChannelOpened(const PrivateIPDLInterface&,
754
                    const IPC::Message&,
755
                    TransportDescriptor*, base::ProcessId*, ProtocolId*);
756
757
#if defined(XP_WIN)
758
// This is a restricted version of Windows' DuplicateHandle() function
759
// that works inside the sandbox and can send handles but not retrieve
760
// them.  Unlike DuplicateHandle(), it takes a process ID rather than
761
// a process handle.  It returns true on success, false otherwise.
762
bool
763
DuplicateHandle(HANDLE aSourceHandle,
764
                DWORD aTargetProcessId,
765
                HANDLE* aTargetHandle,
766
                DWORD aDesiredAccess,
767
                DWORD aOptions);
768
#endif
769
770
/**
771
 * Annotate the crash reporter with the error code from the most recent system
772
 * call. Returns the system error.
773
 */
774
void AnnotateSystemError();
775
776
enum class LivenessState
777
{
778
  Dead,
779
  Null,
780
  Start = Null
781
};
782
783
bool
784
StateTransition(bool aIsDelete, LivenessState* aNext);
785
786
enum class ReEntrantDeleteLivenessState
787
{
788
  Dead,
789
  Null,
790
  Dying,
791
  Start = Null,
792
};
793
794
bool
795
ReEntrantDeleteStateTransition(bool aIsDelete,
796
                               bool aIsDeleteReply,
797
                               ReEntrantDeleteLivenessState* aNext);
798
799
/**
800
 * An endpoint represents one end of a partially initialized IPDL channel. To
801
 * set up a new top-level protocol:
802
 *
803
 * Endpoint<PFooParent> parentEp;
804
 * Endpoint<PFooChild> childEp;
805
 * nsresult rv;
806
 * rv = PFoo::CreateEndpoints(parentPid, childPid, &parentEp, &childEp);
807
 *
808
 * You're required to pass in parentPid and childPid, which are the pids of the
809
 * processes in which the parent and child endpoints will be used.
810
 *
811
 * Endpoints can be passed in IPDL messages or sent to other threads using
812
 * PostTask. Once an Endpoint has arrived at its destination process and thread,
813
 * you need to create the top-level actor and bind it to the endpoint:
814
 *
815
 * FooParent* parent = new FooParent();
816
 * bool rv1 = parentEp.Bind(parent, processActor);
817
 * bool rv2 = parent->SendBar(...);
818
 *
819
 * (See Bind below for an explanation of processActor.) Once the actor is bound
820
 * to the endpoint, it can send and receive messages.
821
 */
822
template<class PFooSide>
823
class Endpoint
824
{
825
public:
826
    typedef base::ProcessId ProcessId;
827
828
    Endpoint()
829
      : mValid(false)
830
      , mMode(static_cast<mozilla::ipc::Transport::Mode>(0))
831
      , mMyPid(0)
832
      , mOtherPid(0)
833
0
    {
834
0
    }
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>::Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerParent>::Endpoint()
835
836
    Endpoint(const PrivateIPDLInterface&,
837
             mozilla::ipc::Transport::Mode aMode,
838
             TransportDescriptor aTransport,
839
             ProcessId aMyPid,
840
             ProcessId aOtherPid)
841
      : mValid(true)
842
      , mMode(aMode)
843
      , mTransport(aTransport)
844
      , mMyPid(aMyPid)
845
      , mOtherPid(aOtherPid)
846
0
    {}
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PCookieServiceParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PCookieServiceChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDNSRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDNSRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDataChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDataChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFTPChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFTPChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFileChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFileChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFilePickerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFilePickerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PGPUParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PGPUChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMessagePortParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMessagePortChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PNeckoParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PNeckoChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintingParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintingChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPSocketParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPSocketChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PTextureParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PTextureChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTransportProviderParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTransportProviderChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PUDPSocketParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PUDPSocketChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PVsyncParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PVsyncChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBrowserParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBrowserChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::camera::PCamerasParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::camera::PCamerasChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PColorPickerParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PColorPickerChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeParent>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeChild>::Endpoint(mozilla::ipc::PrivateIPDLInterface const&, IPC::Channel::Mode, mozilla::ipc::TransportDescriptor, int, int)
847
848
    Endpoint(Endpoint&& aOther)
849
      : mValid(aOther.mValid)
850
      , mTransport(aOther.mTransport)
851
      , mMyPid(aOther.mMyPid)
852
      , mOtherPid(aOther.mOtherPid)
853
0
    {
854
0
        if (aOther.mValid) {
855
0
            mMode = aOther.mMode;
856
0
        }
857
0
        aOther.mValid = false;
858
0
    }
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerChild>::Endpoint(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>::Endpoint(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
859
860
    Endpoint& operator=(Endpoint&& aOther)
861
0
    {
862
0
        mValid = aOther.mValid;
863
0
        if (aOther.mValid) {
864
0
            mMode = aOther.mMode;
865
0
        }
866
0
        mTransport = aOther.mTransport;
867
0
        mMyPid = aOther.mMyPid;
868
0
        mOtherPid = aOther.mOtherPid;
869
0
870
0
        aOther.mValid = false;
871
0
        return *this;
872
0
    }
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PAPZParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PAPZChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetParent>::operator=(mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetChild>::operator=(mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PContentParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PContentChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>::operator=(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PCookieServiceParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PCookieServiceParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PCookieServiceChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PCookieServiceChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDNSRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PDNSRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDNSRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PDNSRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDataChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PDataChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDataChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PDataChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleParent>::operator=(mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleChild>::operator=(mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFTPChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PFTPChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFTPChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PFTPChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFileChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PFileChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFileChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PFileChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFilePickerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PFilePickerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFilePickerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PFilePickerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PGPUParent>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PGPUParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PGPUChild>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PGPUChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalParent>::operator=(mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalChild>::operator=(mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperParent>::operator=(mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperChild>::operator=(mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PHttpChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PHttpChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptParent>::operator=(mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptChild>::operator=(mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaParent>::operator=(mozilla::ipc::Endpoint<mozilla::media::PMediaParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaChild>::operator=(mozilla::ipc::Endpoint<mozilla::media::PMediaChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMessagePortParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PMessagePortParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMessagePortChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PMessagePortChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PNeckoParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PNeckoParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PNeckoChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PNeckoChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateParent>::operator=(mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateChild>::operator=(mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderParent>::operator=(mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderChild>::operator=(mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPresentationParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPresentationChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogParent>::operator=(mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogChild>::operator=(mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogParent>::operator=(mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogChild>::operator=(mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintingParent>::operator=(mozilla::ipc::Endpoint<mozilla::embedding::PPrintingParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintingChild>::operator=(mozilla::ipc::Endpoint<mozilla::embedding::PPrintingChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>::operator=(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>::operator=(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerParent>::operator=(mozilla::ipc::Endpoint<mozilla::PProfilerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerChild>::operator=(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobParent>::operator=(mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobChild>::operator=(mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineParent>::operator=(mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineChild>::operator=(mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameParent>::operator=(mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameChild>::operator=(mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheParent>::operator=(mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheChild>::operator=(mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>::operator=(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPSocketParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PTCPSocketParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPSocketChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PTCPSocketChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PTestShellParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PTestShellChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PTextureParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PTextureParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PTextureChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PTextureChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTransportProviderParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PTransportProviderParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTransportProviderChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PTransportProviderChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PUDPSocketParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PUDPSocketParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PUDPSocketChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PUDPSocketChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRParent>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRChild>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerParent>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerChild>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PVsyncParent>::operator=(mozilla::ipc::Endpoint<mozilla::layout::PVsyncParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PVsyncChild>::operator=(mozilla::ipc::Endpoint<mozilla::layout::PVsyncChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>::operator=(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentParent>::operator=(mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentChild>::operator=(mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesParent>::operator=(mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesChild>::operator=(mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeParent>::operator=(mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeChild>::operator=(mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PWebSocketParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PWebSocketChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBrowserParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBrowserParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBrowserChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PBrowserChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamParent>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamChild>::operator=(mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::camera::PCamerasParent>::operator=(mozilla::ipc::Endpoint<mozilla::camera::PCamerasParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::camera::PCamerasChild>::operator=(mozilla::ipc::Endpoint<mozilla::camera::PCamerasChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterParent>::operator=(mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterChild>::operator=(mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamParent>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamChild>::operator=(mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMParent>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMChild>::operator=(mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientHandleParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientHandleChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientManagerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientManagerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientSourceParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientSourceChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PColorPickerParent>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PColorPickerParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PColorPickerChild>::operator=(mozilla::ipc::Endpoint<mozilla::dom::PColorPickerChild>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeParent>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeParent>&&)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeChild>::operator=(mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeChild>&&)
873
874
0
    ~Endpoint() {
875
0
        if (mValid) {
876
0
            CloseDescriptor(mTransport);
877
0
        }
878
0
    }
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PCookieServiceParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PCookieServiceChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDNSRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDNSRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDataChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PDataChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFTPChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFTPChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFileChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PFileChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFilePickerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFilePickerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PGPUParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PGPUChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PHttpChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMessagePortParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PMessagePortChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PNeckoParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PNeckoChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintingParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::embedding::PPrintingChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPSocketParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTCPSocketChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PTextureParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PTextureChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTransportProviderParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PTransportProviderChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PUDPSocketParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PUDPSocketChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PVsyncParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layout::PVsyncChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBrowserParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PBrowserChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::camera::PCamerasParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::camera::PCamerasChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PColorPickerParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PColorPickerChild>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeParent>::~Endpoint()
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeChild>::~Endpoint()
879
880
0
    ProcessId OtherPid() const {
881
0
        return mOtherPid;
882
0
    }
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>::OtherPid() const
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>::OtherPid() const
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>::OtherPid() const
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>::OtherPid() const
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>::OtherPid() const
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>::OtherPid() const
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>::OtherPid() const
883
884
    // This method binds aActor to this endpoint. After this call, the actor can
885
    // be used to send and receive messages. The endpoint becomes invalid.
886
    bool Bind(PFooSide* aActor)
887
0
    {
888
0
        MOZ_RELEASE_ASSERT(mValid);
889
0
        if (mMyPid != base::GetCurrentProcId()) {
890
0
            // These pids must match, unless we are recording or replaying, in
891
0
            // which case the parent process will have supplied the pid for the
892
0
            // middleman process instead. Fix this here. If we're replaying
893
0
            // we'll see the pid of the middleman used while recording.
894
0
            MOZ_RELEASE_ASSERT(recordreplay::IsRecordingOrReplaying());
895
0
            MOZ_RELEASE_ASSERT(recordreplay::IsReplaying() ||
896
0
                               mMyPid == recordreplay::child::MiddlemanProcessId());
897
0
            mMyPid = base::GetCurrentProcId();
898
0
        }
899
0
900
0
        UniquePtr<Transport> t = mozilla::ipc::OpenDescriptor(mTransport, mMode);
901
0
        if (!t) {
902
0
            return false;
903
0
        }
904
0
        if (!aActor->Open(t.get(), mOtherPid, XRE_GetIOMessageLoop(),
905
0
                          mMode == Transport::MODE_SERVER ? ParentSide : ChildSide)) {
906
0
            return false;
907
0
        }
908
0
        mValid = false;
909
0
        aActor->SetTransport(std::move(t));
910
0
        return true;
911
0
    }
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>::Bind(mozilla::layers::PCompositorManagerChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>::Bind(mozilla::layers::PCompositorManagerParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>::Bind(mozilla::layers::PImageBridgeChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>::Bind(mozilla::layers::PImageBridgeParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>::Bind(mozilla::layers::PUiCompositorControllerChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>::Bind(mozilla::layers::PUiCompositorControllerParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>::Bind(mozilla::gfx::PVsyncBridgeChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>::Bind(mozilla::gfx::PVsyncBridgeParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>::Bind(mozilla::gfx::PVRGPUChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>::Bind(mozilla::gfx::PVRGPUParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>::Bind(mozilla::gfx::PVRManagerChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>::Bind(mozilla::gfx::PVRManagerParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>::Bind(mozilla::gmp::PGMPContentChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>::Bind(mozilla::gmp::PGMPContentParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>::Bind(mozilla::gmp::PGMPServiceChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>::Bind(mozilla::gmp::PGMPServiceParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>::Bind(mozilla::dom::PVideoDecoderManagerChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>::Bind(mozilla::dom::PVideoDecoderManagerParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>::Bind(mozilla::plugins::PFunctionBrokerChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>::Bind(mozilla::plugins::PFunctionBrokerParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>::Bind(mozilla::plugins::PPluginModuleChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>::Bind(mozilla::plugins::PPluginModuleParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>::Bind(mozilla::PProcessHangMonitorChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>::Bind(mozilla::PProcessHangMonitorParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>::Bind(mozilla::dom::PContentBridgeChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>::Bind(mozilla::dom::PContentBridgeParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerChild>::Bind(mozilla::PProfilerChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::PProfilerParent>::Bind(mozilla::PProfilerParent*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>::Bind(mozilla::extensions::PStreamFilterChild*)
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>::Bind(mozilla::extensions::PStreamFilterParent*)
912
913
0
    bool IsValid() const {
914
0
        return mValid;
915
0
    }
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>::IsValid() const
Unexecuted instantiation: mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>::IsValid() const
916
917
private:
918
    friend struct IPC::ParamTraits<Endpoint<PFooSide>>;
919
920
    Endpoint(const Endpoint&) = delete;
921
    Endpoint& operator=(const Endpoint&) = delete;
922
923
    bool mValid;
924
    mozilla::ipc::Transport::Mode mMode;
925
    TransportDescriptor mTransport;
926
    ProcessId mMyPid, mOtherPid;
927
};
928
929
#if defined(XP_MACOSX)
930
void AnnotateCrashReportWithErrno(CrashReporter::Annotation tag, int error);
931
#else
932
static inline void AnnotateCrashReportWithErrno(CrashReporter::Annotation tag, int error)
933
0
{}
Unexecuted instantiation: SandboxBrokerPolicyFactory.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: SandboxPrefBridge.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpcom_base2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpcom_io0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpcom_io1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_chrome0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpcom_build0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_modules_libpref0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_intl_strres0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_base0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_base1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_base2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_base3.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsCookieService.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_cookie0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_dns0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_protocol_data0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_protocol_file0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_protocol_ftp0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsHttpChannelAuthProvider.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsHttpHandler.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_protocol_http1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_protocol_http2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_protocol_res0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_protocol_websocket0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_protocol_wyciwyg0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsNetModule.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_ipc_chromium0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_ipc_chromium2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: BackgroundChildImpl.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: BackgroundParentImpl.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: FileDescriptorSetChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: FileDescriptorSetParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols10.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols11.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols12.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols13.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols14.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols15.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols16.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols17.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols18.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols19.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols20.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols21.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols22.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols23.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols24.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols25.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols26.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols27.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols28.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols29.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols3.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols30.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols31.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols4.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols5.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols6.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols7.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols8.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: UnifiedProtocols9.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: IPCMessageTypeName.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: TestShellChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: TestShellParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: XPCShellEnvironment.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_js_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Hal.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_hal0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpconnect_wrappers0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_js_xpconnect_loader0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_js_xpconnect_src0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_js_xpconnect_src1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_modules_libjar0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_extensions_cookie0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nr_socket_prsock.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_media_mtransport_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsOSHelperAppService.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_uriloader_exthandler0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_uriloader_prefetch0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_caps0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: GLContextProviderGLX.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: SharedSurfaceGLX.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_gl0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_gl1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: ImageContainer.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: TextureClientX11.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: X11TextureHost.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxFcPlatformFontList.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxGdkNativeRenderer.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxPlatform.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxPlatformGtk.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxPrefs.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_thebes0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_thebes1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: GPUParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VRDisplayHost.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VRDisplayLocal.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxVRExternal.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxVROpenVR.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: gfxVRPuppet.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_vr1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_vr_service0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_config0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_webrender_bindings0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_image0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_image1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_image_decoders_icon0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsContentUtils.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_bindings0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: BatteryManager.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: BrowserElementParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_cache0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_cache1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_canvas0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_canvas1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_credentialmanagement0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: EventStateManager.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_events0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_events1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_events2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_file0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_file_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_file_uri0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_filehandle0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_filesystem0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_filesystem_compat0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_gamepad0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsGeolocation.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: AutoplayPermissionManager.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: AutoplayPermissionRequest.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_html0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_html1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_html3.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_html5.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_jsurl0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: AsmJSCache.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: CubebUtils.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media_eme0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media_gmp2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VideoDecoderChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VideoDecoderManagerParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VideoDecoderParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_agnostic_eme0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_agnostic_gmp0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_systemservices0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: MediaEngineWebRTC.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_webspeech_synth0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_recognition0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_midi0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_midi1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_notification0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_power0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_push0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_security0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_network0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_permission0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsNPAPIPlugin.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsPluginHost.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_plugins_base0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: PluginInstanceChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_plugins_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_plugins_ipc1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: ActorsParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_indexedDB1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_system0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: ContentChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_ipc1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_workers1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_broadcastchannel0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_messagechannel0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_promise0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_vr0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_u2f0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_webbrowserpersist0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_payments0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_payments_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_presentation1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsBaseDragService.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsBaseWidget.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsShmImage.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_widget2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_widget_headless0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsWindow.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_editor_libeditor0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_editor_libeditor2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_base2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsPluginFrame.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VsyncChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: VsyncParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_printing0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_docshell_shistory0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsDocShellModule.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_xpfe_appshell0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: AccessibleWrap.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsMaiInterfaceText.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_accessible_base0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_accessible_generic0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_accessible_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: DocAccessibleChild.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: ProxyAccessible.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_accessible_xpcom0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_tools_profiler0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_hunspell_glue0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_spellcheck_src0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_components_alerts0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_antitracking0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_ackgroundhangmonitor0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_extensions0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_perfmonitoring0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_reputationservice0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Telemetry.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: TelemetryHistogram.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: TelemetryScalar.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: TelemetryIPCAccumulator.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: CombinedStacks.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_windowwatcher0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_printingui_ipc0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_toolkit_recordreplay0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsAppRunner.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: nsEmbedFunctions.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_toolkit_xre0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: HeapSnapshot.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: HeapSnapshotTempFileHelperParent.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: ProtocolFuzzer.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_netwerk_test_gtest0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_apz_test_gtest0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_tests_gtest0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_gfx_tests_gtest1.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_dom_media_gtest0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: content_parent_ipc_libfuzz.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
Unexecuted instantiation: Unified_cpp_test_gtest0.cpp:mozilla::ipc::AnnotateCrashReportWithErrno(CrashReporter::Annotation, int)
934
#endif
935
936
// This function is used internally to create a pair of Endpoints. See the
937
// comment above Endpoint for a description of how it might be used.
938
template<class PFooParent, class PFooChild>
939
nsresult
940
CreateEndpoints(const PrivateIPDLInterface& aPrivate,
941
                base::ProcessId aParentDestPid,
942
                base::ProcessId aChildDestPid,
943
                Endpoint<PFooParent>* aParentEndpoint,
944
                Endpoint<PFooChild>* aChildEndpoint)
945
0
{
946
0
  MOZ_RELEASE_ASSERT(aParentDestPid);
947
0
  MOZ_RELEASE_ASSERT(aChildDestPid);
948
0
949
0
  TransportDescriptor parentTransport, childTransport;
950
0
  nsresult rv;
951
0
  if (NS_FAILED(rv = CreateTransport(aParentDestPid, &parentTransport, &childTransport))) {
952
0
    AnnotateCrashReportWithErrno(
953
0
      CrashReporter::Annotation::IpcCreateEndpointsNsresult, int(rv));
954
0
    return rv;
955
0
  }
956
0
957
0
  *aParentEndpoint = Endpoint<PFooParent>(aPrivate, mozilla::ipc::Transport::MODE_SERVER,
958
0
                                          parentTransport, aParentDestPid, aChildDestPid);
959
0
960
0
  *aChildEndpoint = Endpoint<PFooChild>(aPrivate, mozilla::ipc::Transport::MODE_CLIENT,
961
0
                                        childTransport, aChildDestPid, aParentDestPid);
962
0
963
0
  return NS_OK;
964
0
}
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PAPZParent, mozilla::layers::PAPZChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PAPZParent>*, mozilla::ipc::Endpoint<mozilla::layers::PAPZChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PAPZCTreeManagerParent, mozilla::layers::PAPZCTreeManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerParent>*, mozilla::ipc::Endpoint<mozilla::layers::PAPZCTreeManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PAPZInputBridgeParent, mozilla::layers::PAPZInputBridgeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeParent>*, mozilla::ipc::Endpoint<mozilla::layers::PAPZInputBridgeChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PAltDataOutputStreamParent, mozilla::net::PAltDataOutputStreamChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamParent>*, mozilla::ipc::Endpoint<mozilla::net::PAltDataOutputStreamChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PCompositorManagerParent, mozilla::layers::PCompositorManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>*, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::widget::PCompositorWidgetParent, mozilla::widget::PCompositorWidgetChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetParent>*, mozilla::ipc::Endpoint<mozilla::widget::PCompositorWidgetChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PContentParent, mozilla::dom::PContentChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PContentParent>*, mozilla::ipc::Endpoint<mozilla::dom::PContentChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PContentBridgeParent, mozilla::dom::PContentBridgeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>*, mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PContentPermissionRequestParent, mozilla::dom::PContentPermissionRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::PContentPermissionRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PCookieServiceParent, mozilla::net::PCookieServiceChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PCookieServiceParent>*, mozilla::ipc::Endpoint<mozilla::net::PCookieServiceChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PCycleCollectWithLogsParent, mozilla::dom::PCycleCollectWithLogsChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsParent>*, mozilla::ipc::Endpoint<mozilla::dom::PCycleCollectWithLogsChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PDNSRequestParent, mozilla::net::PDNSRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PDNSRequestParent>*, mozilla::ipc::Endpoint<mozilla::net::PDNSRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PDataChannelParent, mozilla::net::PDataChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PDataChannelParent>*, mozilla::ipc::Endpoint<mozilla::net::PDataChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::a11y::PDocAccessibleParent, mozilla::a11y::PDocAccessibleChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleParent>*, mozilla::ipc::Endpoint<mozilla::a11y::PDocAccessibleChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PExternalHelperAppParent, mozilla::dom::PExternalHelperAppChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppParent>*, mozilla::ipc::Endpoint<mozilla::dom::PExternalHelperAppChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PFTPChannelParent, mozilla::net::PFTPChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PFTPChannelParent>*, mozilla::ipc::Endpoint<mozilla::net::PFTPChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PFileChannelParent, mozilla::net::PFileChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PFileChannelParent>*, mozilla::ipc::Endpoint<mozilla::net::PFileChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PFileDescriptorSetParent, mozilla::ipc::PFileDescriptorSetChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PFileDescriptorSetChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PFilePickerParent, mozilla::dom::PFilePickerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PFilePickerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PFilePickerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PFileSystemRequestParent, mozilla::dom::PFileSystemRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::PFileSystemRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PFunctionBrokerParent, mozilla::plugins::PFunctionBrokerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PGMPParent, mozilla::gmp::PGMPChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PGMPParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PGMPContentParent, mozilla::gmp::PGMPContentChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PGMPServiceParent, mozilla::gmp::PGMPServiceChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PGMPStorageParent, mozilla::gmp::PGMPStorageChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPStorageChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PGMPTimerParent, mozilla::gmp::PGMPTimerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPTimerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PGMPVideoDecoderParent, mozilla::gmp::PGMPVideoDecoderChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoDecoderChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PGMPVideoEncoderParent, mozilla::gmp::PGMPVideoEncoderChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPVideoEncoderChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gfx::PGPUParent, mozilla::gfx::PGPUChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gfx::PGPUParent>*, mozilla::ipc::Endpoint<mozilla::gfx::PGPUChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PGamepadEventChannelParent, mozilla::dom::PGamepadEventChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelParent>*, mozilla::ipc::Endpoint<mozilla::dom::PGamepadEventChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PGamepadTestChannelParent, mozilla::dom::PGamepadTestChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelParent>*, mozilla::ipc::Endpoint<mozilla::dom::PGamepadTestChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::hal_sandbox::PHalParent, mozilla::hal_sandbox::PHalChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalParent>*, mozilla::ipc::Endpoint<mozilla::hal_sandbox::PHalChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PHandlerServiceParent, mozilla::dom::PHandlerServiceChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceParent>*, mozilla::ipc::Endpoint<mozilla::dom::PHandlerServiceChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::devtools::PHeapSnapshotTempFileHelperParent, mozilla::devtools::PHeapSnapshotTempFileHelperChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperParent>*, mozilla::ipc::Endpoint<mozilla::devtools::PHeapSnapshotTempFileHelperChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PHttpBackgroundChannelParent, mozilla::net::PHttpBackgroundChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelParent>*, mozilla::ipc::Endpoint<mozilla::net::PHttpBackgroundChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PHttpChannelParent, mozilla::net::PHttpChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PHttpChannelParent>*, mozilla::ipc::Endpoint<mozilla::net::PHttpChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PIPCBlobInputStreamParent, mozilla::ipc::PIPCBlobInputStreamChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PIPCBlobInputStreamChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PImageBridgeParent, mozilla::layers::PImageBridgeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>*, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent, mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::jsipc::PJavaScriptParent, mozilla::jsipc::PJavaScriptChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptParent>*, mozilla::ipc::Endpoint<mozilla::jsipc::PJavaScriptChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PLayerTransactionParent, mozilla::layers::PLayerTransactionChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionParent>*, mozilla::ipc::Endpoint<mozilla::layers::PLayerTransactionChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PLoginReputationParent, mozilla::dom::PLoginReputationChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationParent>*, mozilla::ipc::Endpoint<mozilla::dom::PLoginReputationChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PMIDIManagerParent, mozilla::dom::PMIDIManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PMIDIManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PMIDIPortParent, mozilla::dom::PMIDIPortChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortParent>*, mozilla::ipc::Endpoint<mozilla::dom::PMIDIPortChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::media::PMediaParent, mozilla::media::PMediaChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::media::PMediaParent>*, mozilla::ipc::Endpoint<mozilla::media::PMediaChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::media::PMediaSystemResourceManagerParent, mozilla::media::PMediaSystemResourceManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerParent>*, mozilla::ipc::Endpoint<mozilla::media::PMediaSystemResourceManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PMessagePortParent, mozilla::dom::PMessagePortChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PMessagePortParent>*, mozilla::ipc::Endpoint<mozilla::dom::PMessagePortChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PNeckoParent, mozilla::net::PNeckoChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PNeckoParent>*, mozilla::ipc::Endpoint<mozilla::net::PNeckoChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::docshell::POfflineCacheUpdateParent, mozilla::docshell::POfflineCacheUpdateChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateParent>*, mozilla::ipc::Endpoint<mozilla::docshell::POfflineCacheUpdateChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::psm::PPSMContentDownloaderParent, mozilla::psm::PPSMContentDownloaderChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderParent>*, mozilla::ipc::Endpoint<mozilla::psm::PPSMContentDownloaderChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PParentToChildStreamParent, mozilla::ipc::PParentToChildStreamChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PParentToChildStreamChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PPaymentRequestParent, mozilla::dom::PPaymentRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::PPaymentRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PPendingIPCBlobParent, mozilla::ipc::PPendingIPCBlobChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PPendingIPCBlobChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PPluginBackgroundDestroyerParent, mozilla::plugins::PPluginBackgroundDestroyerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginBackgroundDestroyerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PPluginInstanceParent, mozilla::plugins::PPluginInstanceChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginInstanceChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PPluginModuleParent, mozilla::plugins::PPluginModuleChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PPluginScriptableObjectParent, mozilla::plugins::PPluginScriptableObjectChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginScriptableObjectChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::asmjscache::PAsmJSCacheEntryParent, mozilla::dom::asmjscache::PAsmJSCacheEntryChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryParent>*, mozilla::ipc::Endpoint<mozilla::dom::asmjscache::PAsmJSCacheEntryChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PBackgroundParent, mozilla::ipc::PBackgroundChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBackgroundFileHandleParent, mozilla::dom::PBackgroundFileHandleChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileHandleChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBackgroundFileRequestParent, mozilla::dom::PBackgroundFileRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundFileRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBCursorParent, mozilla::dom::indexedDB::PBackgroundIDBCursorChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBCursorChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PPluginSurfaceParent, mozilla::plugins::PPluginSurfaceChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginSurfaceChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PPluginWidgetParent, mozilla::plugins::PPluginWidgetChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginWidgetChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PPresentationParent, mozilla::dom::PPresentationChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PPresentationParent>*, mozilla::ipc::Endpoint<mozilla::dom::PPresentationChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PPresentationBuilderParent, mozilla::dom::PPresentationBuilderChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderParent>*, mozilla::ipc::Endpoint<mozilla::dom::PPresentationBuilderChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PPresentationRequestParent, mozilla::dom::PPresentationRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::PPresentationRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::embedding::PPrintProgressDialogParent, mozilla::embedding::PPrintProgressDialogChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogParent>*, mozilla::ipc::Endpoint<mozilla::embedding::PPrintProgressDialogChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::embedding::PPrintSettingsDialogParent, mozilla::embedding::PPrintSettingsDialogChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogParent>*, mozilla::ipc::Endpoint<mozilla::embedding::PPrintSettingsDialogChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::embedding::PPrintingParent, mozilla::embedding::PPrintingChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::embedding::PPrintingParent>*, mozilla::ipc::Endpoint<mozilla::embedding::PPrintingChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::PProcessHangMonitorParent, mozilla::PProcessHangMonitorChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>*, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::PProfilerParent, mozilla::PProfilerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::PProfilerParent>*, mozilla::ipc::Endpoint<mozilla::PProfilerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::quota::PQuotaParent, mozilla::dom::quota::PQuotaChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaParent>*, mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::quota::PQuotaRequestParent, mozilla::dom::quota::PQuotaRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::quota::PQuotaUsageRequestParent, mozilla::dom::quota::PQuotaUsageRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::quota::PQuotaUsageRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layout::PRemotePrintJobParent, mozilla::layout::PRemotePrintJobChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobParent>*, mozilla::ipc::Endpoint<mozilla::layout::PRemotePrintJobChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::PRemoteSpellcheckEngineParent, mozilla::PRemoteSpellcheckEngineChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineParent>*, mozilla::ipc::Endpoint<mozilla::PRemoteSpellcheckEngineChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layout::PRenderFrameParent, mozilla::layout::PRenderFrameChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameParent>*, mozilla::ipc::Endpoint<mozilla::layout::PRenderFrameChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::loader::PScriptCacheParent, mozilla::loader::PScriptCacheChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheParent>*, mozilla::ipc::Endpoint<mozilla::loader::PScriptCacheChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PServiceWorkerParent, mozilla::dom::PServiceWorkerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PServiceWorkerContainerParent, mozilla::dom::PServiceWorkerContainerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerContainerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PServiceWorkerManagerParent, mozilla::dom::PServiceWorkerManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PServiceWorkerRegistrationParent, mozilla::dom::PServiceWorkerRegistrationChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationParent>*, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerRegistrationChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PServiceWorkerUpdaterParent, mozilla::dom::PServiceWorkerUpdaterChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterParent>*, mozilla::ipc::Endpoint<mozilla::dom::PServiceWorkerUpdaterChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PSimpleChannelParent, mozilla::net::PSimpleChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelParent>*, mozilla::ipc::Endpoint<mozilla::net::PSimpleChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PSpeechSynthesisParent, mozilla::dom::PSpeechSynthesisChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisParent>*, mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PSpeechSynthesisRequestParent, mozilla::dom::PSpeechSynthesisRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::PSpeechSynthesisRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::extensions::PStreamFilterParent, mozilla::extensions::PStreamFilterChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>*, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PStreamNotifyParent, mozilla::plugins::PStreamNotifyChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PStreamNotifyChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PStunAddrsRequestParent, mozilla::net::PStunAddrsRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestParent>*, mozilla::ipc::Endpoint<mozilla::net::PStunAddrsRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PTCPServerSocketParent, mozilla::net::PTCPServerSocketChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketParent>*, mozilla::ipc::Endpoint<mozilla::net::PTCPServerSocketChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PTCPSocketParent, mozilla::net::PTCPSocketChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PTCPSocketParent>*, mozilla::ipc::Endpoint<mozilla::net::PTCPSocketChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PTemporaryIPCBlobParent, mozilla::ipc::PTemporaryIPCBlobChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PTemporaryIPCBlobChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PTestShellParent, mozilla::ipc::PTestShellChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PTestShellParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PTestShellChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PTestShellCommandParent, mozilla::ipc::PTestShellCommandChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PTestShellCommandChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PTextureParent, mozilla::layers::PTextureChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PTextureParent>*, mozilla::ipc::Endpoint<mozilla::layers::PTextureChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PTransportProviderParent, mozilla::net::PTransportProviderChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PTransportProviderParent>*, mozilla::ipc::Endpoint<mozilla::net::PTransportProviderChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PUDPSocketParent, mozilla::net::PUDPSocketChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PUDPSocketParent>*, mozilla::ipc::Endpoint<mozilla::net::PUDPSocketChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PURLClassifierParent, mozilla::dom::PURLClassifierChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierParent>*, mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PURLClassifierLocalParent, mozilla::dom::PURLClassifierLocalChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalParent>*, mozilla::ipc::Endpoint<mozilla::dom::PURLClassifierLocalChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PUiCompositorControllerParent, mozilla::layers::PUiCompositorControllerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>*, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gfx::PVRParent, mozilla::gfx::PVRChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gfx::PVRParent>*, mozilla::ipc::Endpoint<mozilla::gfx::PVRChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gfx::PVRGPUParent, mozilla::gfx::PVRGPUChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>*, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gfx::PVRLayerParent, mozilla::gfx::PVRLayerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerParent>*, mozilla::ipc::Endpoint<mozilla::gfx::PVRLayerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gfx::PVRManagerParent, mozilla::gfx::PVRManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>*, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PVideoBridgeParent, mozilla::layers::PVideoBridgeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeParent>*, mozilla::ipc::Endpoint<mozilla::layers::PVideoBridgeChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PVideoDecoderParent, mozilla::dom::PVideoDecoderChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderParent>*, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PVideoDecoderManagerParent, mozilla::dom::PVideoDecoderManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layout::PVsyncParent, mozilla::layout::PVsyncChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layout::PVsyncParent>*, mozilla::ipc::Endpoint<mozilla::layout::PVsyncChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gfx::PVsyncBridgeParent, mozilla::gfx::PVsyncBridgeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>*, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PWebAuthnTransactionParent, mozilla::dom::PWebAuthnTransactionChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionParent>*, mozilla::ipc::Endpoint<mozilla::dom::PWebAuthnTransactionChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::PWebBrowserPersistDocumentParent, mozilla::PWebBrowserPersistDocumentChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentParent>*, mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistDocumentChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::PWebBrowserPersistResourcesParent, mozilla::PWebBrowserPersistResourcesChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesParent>*, mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistResourcesChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::PWebBrowserPersistSerializeParent, mozilla::PWebBrowserPersistSerializeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeParent>*, mozilla::ipc::Endpoint<mozilla::PWebBrowserPersistSerializeChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent, mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent, mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent, mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent, mozilla::dom::indexedDB::PBackgroundIDBFactoryChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent, mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBRequestParent, mozilla::dom::indexedDB::PBackgroundIDBRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PWebRenderBridgeParent, mozilla::layers::PWebRenderBridgeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeParent>*, mozilla::ipc::Endpoint<mozilla::layers::PWebRenderBridgeChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PWebSocketParent, mozilla::net::PWebSocketChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PWebSocketParent>*, mozilla::ipc::Endpoint<mozilla::net::PWebSocketChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PWebSocketEventListenerParent, mozilla::net::PWebSocketEventListenerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerParent>*, mozilla::ipc::Endpoint<mozilla::net::PWebSocketEventListenerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PWebrtcGlobalParent, mozilla::dom::PWebrtcGlobalChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalParent>*, mozilla::ipc::Endpoint<mozilla::dom::PWebrtcGlobalChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PWyciwygChannelParent, mozilla::net::PWyciwygChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelParent>*, mozilla::ipc::Endpoint<mozilla::net::PWyciwygChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent, mozilla::dom::indexedDB::PBackgroundIDBTransactionChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBTransactionChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent, mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent, mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent>*, mozilla::ipc::Endpoint<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBackgroundLocalStorageCacheParent, mozilla::dom::PBackgroundLocalStorageCacheChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundLocalStorageCacheChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBackgroundMutableFileParent, mozilla::dom::PBackgroundMutableFileChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundMutableFileChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBackgroundSDBConnectionParent, mozilla::dom::PBackgroundSDBConnectionChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBConnectionChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBackgroundSDBRequestParent, mozilla::dom::PBackgroundSDBRequestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundSDBRequestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBackgroundStorageParent, mozilla::dom::PBackgroundStorageChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBackgroundStorageChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PBackgroundTestParent, mozilla::ipc::PBackgroundTestChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundTestChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBroadcastChannelParent, mozilla::dom::PBroadcastChannelChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBroadcastChannelChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PBrowserParent, mozilla::dom::PBrowserChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PBrowserParent>*, mozilla::ipc::Endpoint<mozilla::dom::PBrowserChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::plugins::PBrowserStreamParent, mozilla::plugins::PBrowserStreamChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamParent>*, mozilla::ipc::Endpoint<mozilla::plugins::PBrowserStreamChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::cache::PCacheParent, mozilla::dom::cache::PCacheChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheParent>*, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::cache::PCacheOpParent, mozilla::dom::cache::PCacheOpChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpParent>*, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheOpChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::cache::PCacheStorageParent, mozilla::dom::cache::PCacheStorageChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageParent>*, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStorageChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::cache::PCacheStreamControlParent, mozilla::dom::cache::PCacheStreamControlChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlParent>*, mozilla::ipc::Endpoint<mozilla::dom::cache::PCacheStreamControlChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::camera::PCamerasParent, mozilla::camera::PCamerasChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::camera::PCamerasParent>*, mozilla::ipc::Endpoint<mozilla::camera::PCamerasChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::net::PChannelDiverterParent, mozilla::net::PChannelDiverterChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterParent>*, mozilla::ipc::Endpoint<mozilla::net::PChannelDiverterChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::ipc::PChildToParentStreamParent, mozilla::ipc::PChildToParentStreamChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamParent>*, mozilla::ipc::Endpoint<mozilla::ipc::PChildToParentStreamChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::gmp::PChromiumCDMParent, mozilla::gmp::PChromiumCDMChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMParent>*, mozilla::ipc::Endpoint<mozilla::gmp::PChromiumCDMChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientHandleParent, mozilla::dom::PClientHandleChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientHandleParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientHandleChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientHandleOpParent, mozilla::dom::PClientHandleOpChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientHandleOpChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientManagerParent, mozilla::dom::PClientManagerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientManagerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientManagerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientManagerOpParent, mozilla::dom::PClientManagerOpChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientManagerOpChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientNavigateOpParent, mozilla::dom::PClientNavigateOpChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientNavigateOpChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientOpenWindowOpParent, mozilla::dom::PClientOpenWindowOpChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientOpenWindowOpChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientSourceParent, mozilla::dom::PClientSourceChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientSourceParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientSourceChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PClientSourceOpParent, mozilla::dom::PClientSourceOpChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpParent>*, mozilla::ipc::Endpoint<mozilla::dom::PClientSourceOpChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::dom::PColorPickerParent, mozilla::dom::PColorPickerChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::dom::PColorPickerParent>*, mozilla::ipc::Endpoint<mozilla::dom::PColorPickerChild>*)
Unexecuted instantiation: nsresult mozilla::ipc::CreateEndpoints<mozilla::layers::PCompositorBridgeParent, mozilla::layers::PCompositorBridgeChild>(mozilla::ipc::PrivateIPDLInterface const&, int, int, mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeParent>*, mozilla::ipc::Endpoint<mozilla::layers::PCompositorBridgeChild>*)
965
966
void
967
TableToArray(const nsTHashtable<nsPtrHashKey<void>>& aTable,
968
             nsTArray<void*>& aArray);
969
970
} // namespace ipc
971
972
template<typename Protocol>
973
class ManagedContainer : public nsTHashtable<nsPtrHashKey<Protocol>>
974
{
975
  typedef nsTHashtable<nsPtrHashKey<Protocol>> BaseClass;
976
977
public:
978
  // Having the core logic work on void pointers, rather than typed pointers,
979
  // means that we can have one instance of this code out-of-line, rather
980
  // than several hundred instances of this code out-of-lined.  (Those
981
  // repeated instances don't necessarily get folded together by the linker
982
  // because they contain member offsets and such that differ between the
983
  // functions.)  We do have to pay for it with some eye-bleedingly bad casts,
984
  // though.
985
0
  void ToArray(nsTArray<Protocol*>& aArray) const {
986
0
    ::mozilla::ipc::TableToArray(*reinterpret_cast<const nsTHashtable<nsPtrHashKey<void>>*>
987
0
                                 (static_cast<const BaseClass*>(this)),
988
0
                                 reinterpret_cast<nsTArray<void*>&>(aArray));
989
0
  }
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PCompositorBridgeChild>::ToArray(nsTArray<mozilla::layers::PCompositorBridgeChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PCompositorBridgeParent>::ToArray(nsTArray<mozilla::layers::PCompositorBridgeParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBrowserChild>::ToArray(nsTArray<mozilla::dom::PBrowserChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PFileDescriptorSetChild>::ToArray(nsTArray<mozilla::ipc::PFileDescriptorSetChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::jsipc::PJavaScriptChild>::ToArray(nsTArray<mozilla::jsipc::PJavaScriptChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PChildToParentStreamChild>::ToArray(nsTArray<mozilla::ipc::PChildToParentStreamChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PParentToChildStreamChild>::ToArray(nsTArray<mozilla::ipc::PParentToChildStreamChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PIPCBlobInputStreamChild>::ToArray(nsTArray<mozilla::ipc::PIPCBlobInputStreamChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBrowserParent>::ToArray(nsTArray<mozilla::dom::PBrowserParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PFileDescriptorSetParent>::ToArray(nsTArray<mozilla::ipc::PFileDescriptorSetParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::jsipc::PJavaScriptParent>::ToArray(nsTArray<mozilla::jsipc::PJavaScriptParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PChildToParentStreamParent>::ToArray(nsTArray<mozilla::ipc::PChildToParentStreamParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PParentToChildStreamParent>::ToArray(nsTArray<mozilla::ipc::PParentToChildStreamParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PIPCBlobInputStreamParent>::ToArray(nsTArray<mozilla::ipc::PIPCBlobInputStreamParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientOpenWindowOpChild>::ToArray(nsTArray<mozilla::dom::PClientOpenWindowOpChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PContentPermissionRequestChild>::ToArray(nsTArray<mozilla::dom::PContentPermissionRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PCycleCollectWithLogsChild>::ToArray(nsTArray<mozilla::dom::PCycleCollectWithLogsChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::psm::PPSMContentDownloaderChild>::ToArray(nsTArray<mozilla::psm::PPSMContentDownloaderChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PExternalHelperAppChild>::ToArray(nsTArray<mozilla::dom::PExternalHelperAppChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::hal_sandbox::PHalChild>::ToArray(nsTArray<mozilla::hal_sandbox::PHalChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PHandlerServiceChild>::ToArray(nsTArray<mozilla::dom::PHandlerServiceChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::devtools::PHeapSnapshotTempFileHelperChild>::ToArray(nsTArray<mozilla::devtools::PHeapSnapshotTempFileHelperChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::media::PMediaChild>::ToArray(nsTArray<mozilla::media::PMediaChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PNeckoChild>::ToArray(nsTArray<mozilla::net::PNeckoChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::docshell::POfflineCacheUpdateChild>::ToArray(nsTArray<mozilla::docshell::POfflineCacheUpdateChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::embedding::PPrintingChild>::ToArray(nsTArray<mozilla::embedding::PPrintingChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PSpeechSynthesisChild>::ToArray(nsTArray<mozilla::dom::PSpeechSynthesisChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PTestShellChild>::ToArray(nsTArray<mozilla::ipc::PTestShellChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PRemoteSpellcheckEngineChild>::ToArray(nsTArray<mozilla::PRemoteSpellcheckEngineChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PWebBrowserPersistDocumentChild>::ToArray(nsTArray<mozilla::PWebBrowserPersistDocumentChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PWebrtcGlobalChild>::ToArray(nsTArray<mozilla::dom::PWebrtcGlobalChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPresentationChild>::ToArray(nsTArray<mozilla::dom::PPresentationChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PURLClassifierChild>::ToArray(nsTArray<mozilla::dom::PURLClassifierChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PURLClassifierLocalChild>::ToArray(nsTArray<mozilla::dom::PURLClassifierLocalChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::loader::PScriptCacheChild>::ToArray(nsTArray<mozilla::loader::PScriptCacheChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PLoginReputationChild>::ToArray(nsTArray<mozilla::dom::PLoginReputationChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientOpenWindowOpParent>::ToArray(nsTArray<mozilla::dom::PClientOpenWindowOpParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PContentPermissionRequestParent>::ToArray(nsTArray<mozilla::dom::PContentPermissionRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PCycleCollectWithLogsParent>::ToArray(nsTArray<mozilla::dom::PCycleCollectWithLogsParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::psm::PPSMContentDownloaderParent>::ToArray(nsTArray<mozilla::psm::PPSMContentDownloaderParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PExternalHelperAppParent>::ToArray(nsTArray<mozilla::dom::PExternalHelperAppParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::hal_sandbox::PHalParent>::ToArray(nsTArray<mozilla::hal_sandbox::PHalParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PHandlerServiceParent>::ToArray(nsTArray<mozilla::dom::PHandlerServiceParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::devtools::PHeapSnapshotTempFileHelperParent>::ToArray(nsTArray<mozilla::devtools::PHeapSnapshotTempFileHelperParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::media::PMediaParent>::ToArray(nsTArray<mozilla::media::PMediaParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PNeckoParent>::ToArray(nsTArray<mozilla::net::PNeckoParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::docshell::POfflineCacheUpdateParent>::ToArray(nsTArray<mozilla::docshell::POfflineCacheUpdateParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::embedding::PPrintingParent>::ToArray(nsTArray<mozilla::embedding::PPrintingParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PSpeechSynthesisParent>::ToArray(nsTArray<mozilla::dom::PSpeechSynthesisParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PTestShellParent>::ToArray(nsTArray<mozilla::ipc::PTestShellParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PRemoteSpellcheckEngineParent>::ToArray(nsTArray<mozilla::PRemoteSpellcheckEngineParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PWebBrowserPersistDocumentParent>::ToArray(nsTArray<mozilla::PWebBrowserPersistDocumentParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PWebrtcGlobalParent>::ToArray(nsTArray<mozilla::dom::PWebrtcGlobalParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPresentationParent>::ToArray(nsTArray<mozilla::dom::PPresentationParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PURLClassifierParent>::ToArray(nsTArray<mozilla::dom::PURLClassifierParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PURLClassifierLocalParent>::ToArray(nsTArray<mozilla::dom::PURLClassifierLocalParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::loader::PScriptCacheParent>::ToArray(nsTArray<mozilla::loader::PScriptCacheParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PLoginReputationParent>::ToArray(nsTArray<mozilla::dom::PLoginReputationParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPTimerChild>::ToArray(nsTArray<mozilla::gmp::PGMPTimerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPStorageChild>::ToArray(nsTArray<mozilla::gmp::PGMPStorageChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPVideoDecoderChild>::ToArray(nsTArray<mozilla::gmp::PGMPVideoDecoderChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPVideoEncoderChild>::ToArray(nsTArray<mozilla::gmp::PGMPVideoEncoderChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PChromiumCDMChild>::ToArray(nsTArray<mozilla::gmp::PChromiumCDMChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPVideoDecoderParent>::ToArray(nsTArray<mozilla::gmp::PGMPVideoDecoderParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPVideoEncoderParent>::ToArray(nsTArray<mozilla::gmp::PGMPVideoEncoderParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PChromiumCDMParent>::ToArray(nsTArray<mozilla::gmp::PChromiumCDMParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPTimerParent>::ToArray(nsTArray<mozilla::gmp::PGMPTimerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gmp::PGMPStorageParent>::ToArray(nsTArray<mozilla::gmp::PGMPStorageParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PAPZInputBridgeChild>::ToArray(nsTArray<mozilla::layers::PAPZInputBridgeChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PAPZInputBridgeParent>::ToArray(nsTArray<mozilla::layers::PAPZInputBridgeParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PTextureChild>::ToArray(nsTArray<mozilla::layers::PTextureChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::media::PMediaSystemResourceManagerChild>::ToArray(nsTArray<mozilla::media::PMediaSystemResourceManagerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PTextureParent>::ToArray(nsTArray<mozilla::layers::PTextureParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::media::PMediaSystemResourceManagerParent>::ToArray(nsTArray<mozilla::media::PMediaSystemResourceManagerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PHttpChannelChild>::ToArray(nsTArray<mozilla::net::PHttpChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PCookieServiceChild>::ToArray(nsTArray<mozilla::net::PCookieServiceChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PWyciwygChannelChild>::ToArray(nsTArray<mozilla::net::PWyciwygChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PFTPChannelChild>::ToArray(nsTArray<mozilla::net::PFTPChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PWebSocketChild>::ToArray(nsTArray<mozilla::net::PWebSocketChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PWebSocketEventListenerChild>::ToArray(nsTArray<mozilla::net::PWebSocketEventListenerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PTCPSocketChild>::ToArray(nsTArray<mozilla::net::PTCPSocketChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PTCPServerSocketChild>::ToArray(nsTArray<mozilla::net::PTCPServerSocketChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PUDPSocketChild>::ToArray(nsTArray<mozilla::net::PUDPSocketChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PDNSRequestChild>::ToArray(nsTArray<mozilla::net::PDNSRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PDataChannelChild>::ToArray(nsTArray<mozilla::net::PDataChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PSimpleChannelChild>::ToArray(nsTArray<mozilla::net::PSimpleChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PFileChannelChild>::ToArray(nsTArray<mozilla::net::PFileChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PChannelDiverterChild>::ToArray(nsTArray<mozilla::net::PChannelDiverterChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PTransportProviderChild>::ToArray(nsTArray<mozilla::net::PTransportProviderChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PAltDataOutputStreamChild>::ToArray(nsTArray<mozilla::net::PAltDataOutputStreamChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PStunAddrsRequestChild>::ToArray(nsTArray<mozilla::net::PStunAddrsRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PHttpChannelParent>::ToArray(nsTArray<mozilla::net::PHttpChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PCookieServiceParent>::ToArray(nsTArray<mozilla::net::PCookieServiceParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PWyciwygChannelParent>::ToArray(nsTArray<mozilla::net::PWyciwygChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PFTPChannelParent>::ToArray(nsTArray<mozilla::net::PFTPChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PWebSocketParent>::ToArray(nsTArray<mozilla::net::PWebSocketParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PWebSocketEventListenerParent>::ToArray(nsTArray<mozilla::net::PWebSocketEventListenerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PTCPSocketParent>::ToArray(nsTArray<mozilla::net::PTCPSocketParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PTCPServerSocketParent>::ToArray(nsTArray<mozilla::net::PTCPServerSocketParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PUDPSocketParent>::ToArray(nsTArray<mozilla::net::PUDPSocketParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PDNSRequestParent>::ToArray(nsTArray<mozilla::net::PDNSRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PDataChannelParent>::ToArray(nsTArray<mozilla::net::PDataChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PSimpleChannelParent>::ToArray(nsTArray<mozilla::net::PSimpleChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PFileChannelParent>::ToArray(nsTArray<mozilla::net::PFileChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PChannelDiverterParent>::ToArray(nsTArray<mozilla::net::PChannelDiverterParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PTransportProviderParent>::ToArray(nsTArray<mozilla::net::PTransportProviderParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PAltDataOutputStreamParent>::ToArray(nsTArray<mozilla::net::PAltDataOutputStreamParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PStunAddrsRequestParent>::ToArray(nsTArray<mozilla::net::PStunAddrsRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginBackgroundDestroyerChild>::ToArray(nsTArray<mozilla::plugins::PPluginBackgroundDestroyerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginScriptableObjectChild>::ToArray(nsTArray<mozilla::plugins::PPluginScriptableObjectChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PBrowserStreamChild>::ToArray(nsTArray<mozilla::plugins::PBrowserStreamChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PStreamNotifyChild>::ToArray(nsTArray<mozilla::plugins::PStreamNotifyChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginSurfaceChild>::ToArray(nsTArray<mozilla::plugins::PPluginSurfaceChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginBackgroundDestroyerParent>::ToArray(nsTArray<mozilla::plugins::PPluginBackgroundDestroyerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginScriptableObjectParent>::ToArray(nsTArray<mozilla::plugins::PPluginScriptableObjectParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PBrowserStreamParent>::ToArray(nsTArray<mozilla::plugins::PBrowserStreamParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PStreamNotifyParent>::ToArray(nsTArray<mozilla::plugins::PStreamNotifyParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginSurfaceParent>::ToArray(nsTArray<mozilla::plugins::PPluginSurfaceParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginInstanceChild>::ToArray(nsTArray<mozilla::plugins::PPluginInstanceChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginInstanceParent>::ToArray(nsTArray<mozilla::plugins::PPluginInstanceParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::asmjscache::PAsmJSCacheEntryChild>::ToArray(nsTArray<mozilla::dom::asmjscache::PAsmJSCacheEntryChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBFactoryChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBFactoryChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundSDBConnectionChild>::ToArray(nsTArray<mozilla::dom::PBackgroundSDBConnectionChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundLocalStorageCacheChild>::ToArray(nsTArray<mozilla::dom::PBackgroundLocalStorageCacheChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundStorageChild>::ToArray(nsTArray<mozilla::dom::PBackgroundStorageChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PBackgroundTestChild>::ToArray(nsTArray<mozilla::ipc::PBackgroundTestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBroadcastChannelChild>::ToArray(nsTArray<mozilla::dom::PBroadcastChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheChild>::ToArray(nsTArray<mozilla::dom::cache::PCacheChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheStorageChild>::ToArray(nsTArray<mozilla::dom::cache::PCacheStorageChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheStreamControlChild>::ToArray(nsTArray<mozilla::dom::cache::PCacheStreamControlChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientManagerChild>::ToArray(nsTArray<mozilla::dom::PClientManagerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PFileSystemRequestChild>::ToArray(nsTArray<mozilla::dom::PFileSystemRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PGamepadEventChannelChild>::ToArray(nsTArray<mozilla::dom::PGamepadEventChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PGamepadTestChannelChild>::ToArray(nsTArray<mozilla::dom::PGamepadTestChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PHttpBackgroundChannelChild>::ToArray(nsTArray<mozilla::net::PHttpBackgroundChannelChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PPendingIPCBlobChild>::ToArray(nsTArray<mozilla::ipc::PPendingIPCBlobChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PTemporaryIPCBlobChild>::ToArray(nsTArray<mozilla::ipc::PTemporaryIPCBlobChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PMessagePortChild>::ToArray(nsTArray<mozilla::dom::PMessagePortChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::camera::PCamerasChild>::ToArray(nsTArray<mozilla::camera::PCamerasChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PMIDIManagerChild>::ToArray(nsTArray<mozilla::dom::PMIDIManagerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PMIDIPortChild>::ToArray(nsTArray<mozilla::dom::PMIDIPortChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::quota::PQuotaChild>::ToArray(nsTArray<mozilla::dom::quota::PQuotaChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerChild>::ToArray(nsTArray<mozilla::dom::PServiceWorkerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerContainerChild>::ToArray(nsTArray<mozilla::dom::PServiceWorkerContainerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerManagerChild>::ToArray(nsTArray<mozilla::dom::PServiceWorkerManagerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerRegistrationChild>::ToArray(nsTArray<mozilla::dom::PServiceWorkerRegistrationChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PWebAuthnTransactionChild>::ToArray(nsTArray<mozilla::dom::PWebAuthnTransactionChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layout::PVsyncChild>::ToArray(nsTArray<mozilla::layout::PVsyncChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundFileRequestChild>::ToArray(nsTArray<mozilla::dom::PBackgroundFileRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundFileRequestParent>::ToArray(nsTArray<mozilla::dom::PBackgroundFileRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPresentationBuilderChild>::ToArray(nsTArray<mozilla::dom::PPresentationBuilderChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPresentationRequestChild>::ToArray(nsTArray<mozilla::dom::PPresentationRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPresentationBuilderParent>::ToArray(nsTArray<mozilla::dom::PPresentationBuilderParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPresentationRequestParent>::ToArray(nsTArray<mozilla::dom::PPresentationRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::embedding::PPrintProgressDialogChild>::ToArray(nsTArray<mozilla::embedding::PPrintProgressDialogChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::embedding::PPrintSettingsDialogChild>::ToArray(nsTArray<mozilla::embedding::PPrintSettingsDialogChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layout::PRemotePrintJobChild>::ToArray(nsTArray<mozilla::layout::PRemotePrintJobChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::embedding::PPrintProgressDialogParent>::ToArray(nsTArray<mozilla::embedding::PPrintProgressDialogParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::embedding::PPrintSettingsDialogParent>::ToArray(nsTArray<mozilla::embedding::PPrintSettingsDialogParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layout::PRemotePrintJobParent>::ToArray(nsTArray<mozilla::layout::PRemotePrintJobParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::quota::PQuotaRequestChild>::ToArray(nsTArray<mozilla::dom::quota::PQuotaRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::quota::PQuotaUsageRequestChild>::ToArray(nsTArray<mozilla::dom::quota::PQuotaUsageRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::quota::PQuotaRequestParent>::ToArray(nsTArray<mozilla::dom::quota::PQuotaRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::quota::PQuotaUsageRequestParent>::ToArray(nsTArray<mozilla::dom::quota::PQuotaUsageRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerUpdaterChild>::ToArray(nsTArray<mozilla::dom::PServiceWorkerUpdaterChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerUpdaterParent>::ToArray(nsTArray<mozilla::dom::PServiceWorkerUpdaterParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PSpeechSynthesisRequestChild>::ToArray(nsTArray<mozilla::dom::PSpeechSynthesisRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PSpeechSynthesisRequestParent>::ToArray(nsTArray<mozilla::dom::PSpeechSynthesisRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PTestShellCommandChild>::ToArray(nsTArray<mozilla::ipc::PTestShellCommandChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PTestShellCommandParent>::ToArray(nsTArray<mozilla::ipc::PTestShellCommandParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gfx::PVRLayerChild>::ToArray(nsTArray<mozilla::gfx::PVRLayerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::gfx::PVRLayerParent>::ToArray(nsTArray<mozilla::gfx::PVRLayerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PVideoDecoderChild>::ToArray(nsTArray<mozilla::dom::PVideoDecoderChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PVideoDecoderParent>::ToArray(nsTArray<mozilla::dom::PVideoDecoderParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PWebBrowserPersistResourcesChild>::ToArray(nsTArray<mozilla::PWebBrowserPersistResourcesChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PWebBrowserPersistSerializeChild>::ToArray(nsTArray<mozilla::PWebBrowserPersistSerializeChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PWebBrowserPersistResourcesParent>::ToArray(nsTArray<mozilla::PWebBrowserPersistResourcesParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::PWebBrowserPersistSerializeParent>::ToArray(nsTArray<mozilla::PWebBrowserPersistSerializeParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBTransactionChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBTransactionChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundMutableFileChild>::ToArray(nsTArray<mozilla::dom::PBackgroundMutableFileChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBDatabaseRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBTransactionParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBVersionChangeTransactionParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundMutableFileParent>::ToArray(nsTArray<mozilla::dom::PBackgroundMutableFileParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBDatabaseChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBDatabaseParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBFactoryRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBCursorChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBCursorChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBRequestChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBCursorParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBCursorParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBRequestParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundFileHandleChild>::ToArray(nsTArray<mozilla::dom::PBackgroundFileHandleChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundFileHandleParent>::ToArray(nsTArray<mozilla::dom::PBackgroundFileHandleParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::asmjscache::PAsmJSCacheEntryParent>::ToArray(nsTArray<mozilla::dom::asmjscache::PAsmJSCacheEntryParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIDBFactoryParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PBackgroundIndexedDBUtilsParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundSDBConnectionParent>::ToArray(nsTArray<mozilla::dom::PBackgroundSDBConnectionParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundLocalStorageCacheParent>::ToArray(nsTArray<mozilla::dom::PBackgroundLocalStorageCacheParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundStorageParent>::ToArray(nsTArray<mozilla::dom::PBackgroundStorageParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PBackgroundTestParent>::ToArray(nsTArray<mozilla::ipc::PBackgroundTestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBroadcastChannelParent>::ToArray(nsTArray<mozilla::dom::PBroadcastChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheParent>::ToArray(nsTArray<mozilla::dom::cache::PCacheParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheStorageParent>::ToArray(nsTArray<mozilla::dom::cache::PCacheStorageParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheStreamControlParent>::ToArray(nsTArray<mozilla::dom::cache::PCacheStreamControlParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientManagerParent>::ToArray(nsTArray<mozilla::dom::PClientManagerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PFileSystemRequestParent>::ToArray(nsTArray<mozilla::dom::PFileSystemRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PGamepadEventChannelParent>::ToArray(nsTArray<mozilla::dom::PGamepadEventChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PGamepadTestChannelParent>::ToArray(nsTArray<mozilla::dom::PGamepadTestChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::net::PHttpBackgroundChannelParent>::ToArray(nsTArray<mozilla::net::PHttpBackgroundChannelParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PPendingIPCBlobParent>::ToArray(nsTArray<mozilla::ipc::PPendingIPCBlobParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::ipc::PTemporaryIPCBlobParent>::ToArray(nsTArray<mozilla::ipc::PTemporaryIPCBlobParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PMessagePortParent>::ToArray(nsTArray<mozilla::dom::PMessagePortParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::camera::PCamerasParent>::ToArray(nsTArray<mozilla::camera::PCamerasParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PMIDIManagerParent>::ToArray(nsTArray<mozilla::dom::PMIDIManagerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PMIDIPortParent>::ToArray(nsTArray<mozilla::dom::PMIDIPortParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::quota::PQuotaParent>::ToArray(nsTArray<mozilla::dom::quota::PQuotaParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerParent>::ToArray(nsTArray<mozilla::dom::PServiceWorkerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerContainerParent>::ToArray(nsTArray<mozilla::dom::PServiceWorkerContainerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerManagerParent>::ToArray(nsTArray<mozilla::dom::PServiceWorkerManagerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PServiceWorkerRegistrationParent>::ToArray(nsTArray<mozilla::dom::PServiceWorkerRegistrationParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PWebAuthnTransactionParent>::ToArray(nsTArray<mozilla::dom::PWebAuthnTransactionParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layout::PVsyncParent>::ToArray(nsTArray<mozilla::layout::PVsyncParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundSDBRequestChild>::ToArray(nsTArray<mozilla::dom::PBackgroundSDBRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PBackgroundSDBRequestParent>::ToArray(nsTArray<mozilla::dom::PBackgroundSDBRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PColorPickerChild>::ToArray(nsTArray<mozilla::dom::PColorPickerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::a11y::PDocAccessibleChild>::ToArray(nsTArray<mozilla::a11y::PDocAccessibleChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PFilePickerChild>::ToArray(nsTArray<mozilla::dom::PFilePickerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild>::ToArray(nsTArray<mozilla::dom::indexedDB::PIndexedDBPermissionRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layout::PRenderFrameChild>::ToArray(nsTArray<mozilla::layout::PRenderFrameChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginWidgetChild>::ToArray(nsTArray<mozilla::plugins::PPluginWidgetChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPaymentRequestChild>::ToArray(nsTArray<mozilla::dom::PPaymentRequestChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PColorPickerParent>::ToArray(nsTArray<mozilla::dom::PColorPickerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::a11y::PDocAccessibleParent>::ToArray(nsTArray<mozilla::a11y::PDocAccessibleParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PFilePickerParent>::ToArray(nsTArray<mozilla::dom::PFilePickerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent>::ToArray(nsTArray<mozilla::dom::indexedDB::PIndexedDBPermissionRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layout::PRenderFrameParent>::ToArray(nsTArray<mozilla::layout::PRenderFrameParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::plugins::PPluginWidgetParent>::ToArray(nsTArray<mozilla::plugins::PPluginWidgetParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PPaymentRequestParent>::ToArray(nsTArray<mozilla::dom::PPaymentRequestParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheOpChild>::ToArray(nsTArray<mozilla::dom::cache::PCacheOpChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::cache::PCacheOpParent>::ToArray(nsTArray<mozilla::dom::cache::PCacheOpParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientHandleOpChild>::ToArray(nsTArray<mozilla::dom::PClientHandleOpChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientHandleOpParent>::ToArray(nsTArray<mozilla::dom::PClientHandleOpParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientHandleChild>::ToArray(nsTArray<mozilla::dom::PClientHandleChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientManagerOpChild>::ToArray(nsTArray<mozilla::dom::PClientManagerOpChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientNavigateOpChild>::ToArray(nsTArray<mozilla::dom::PClientNavigateOpChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientSourceChild>::ToArray(nsTArray<mozilla::dom::PClientSourceChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientHandleParent>::ToArray(nsTArray<mozilla::dom::PClientHandleParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientManagerOpParent>::ToArray(nsTArray<mozilla::dom::PClientManagerOpParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientNavigateOpParent>::ToArray(nsTArray<mozilla::dom::PClientNavigateOpParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientSourceParent>::ToArray(nsTArray<mozilla::dom::PClientSourceParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientSourceOpChild>::ToArray(nsTArray<mozilla::dom::PClientSourceOpChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::dom::PClientSourceOpParent>::ToArray(nsTArray<mozilla::dom::PClientSourceOpParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PAPZChild>::ToArray(nsTArray<mozilla::layers::PAPZChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PAPZCTreeManagerChild>::ToArray(nsTArray<mozilla::layers::PAPZCTreeManagerChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PLayerTransactionChild>::ToArray(nsTArray<mozilla::layers::PLayerTransactionChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::widget::PCompositorWidgetChild>::ToArray(nsTArray<mozilla::widget::PCompositorWidgetChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PWebRenderBridgeChild>::ToArray(nsTArray<mozilla::layers::PWebRenderBridgeChild*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PAPZParent>::ToArray(nsTArray<mozilla::layers::PAPZParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PAPZCTreeManagerParent>::ToArray(nsTArray<mozilla::layers::PAPZCTreeManagerParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PLayerTransactionParent>::ToArray(nsTArray<mozilla::layers::PLayerTransactionParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::widget::PCompositorWidgetParent>::ToArray(nsTArray<mozilla::widget::PCompositorWidgetParent*>&) const
Unexecuted instantiation: mozilla::ManagedContainer<mozilla::layers::PWebRenderBridgeParent>::ToArray(nsTArray<mozilla::layers::PWebRenderBridgeParent*>&) const
990
};
991
992
template<typename Protocol>
993
Protocol*
994
LoneManagedOrNullAsserts(const ManagedContainer<Protocol>& aManagees)
995
0
{
996
0
    if (aManagees.IsEmpty()) {
997
0
        return nullptr;
998
0
    }
999
0
    MOZ_ASSERT(aManagees.Count() == 1);
1000
0
    return aManagees.ConstIter().Get()->GetKey();
1001
0
}
Unexecuted instantiation: mozilla::jsipc::PJavaScriptParent* mozilla::LoneManagedOrNullAsserts<mozilla::jsipc::PJavaScriptParent>(mozilla::ManagedContainer<mozilla::jsipc::PJavaScriptParent> const&)
Unexecuted instantiation: mozilla::jsipc::PJavaScriptChild* mozilla::LoneManagedOrNullAsserts<mozilla::jsipc::PJavaScriptChild>(mozilla::ManagedContainer<mozilla::jsipc::PJavaScriptChild> const&)
Unexecuted instantiation: mozilla::ipc::PTestShellParent* mozilla::LoneManagedOrNullAsserts<mozilla::ipc::PTestShellParent>(mozilla::ManagedContainer<mozilla::ipc::PTestShellParent> const&)
Unexecuted instantiation: mozilla::net::PNeckoParent* mozilla::LoneManagedOrNullAsserts<mozilla::net::PNeckoParent>(mozilla::ManagedContainer<mozilla::net::PNeckoParent> const&)
Unexecuted instantiation: mozilla::net::PCookieServiceParent* mozilla::LoneManagedOrNullAsserts<mozilla::net::PCookieServiceParent>(mozilla::ManagedContainer<mozilla::net::PCookieServiceParent> const&)
Unexecuted instantiation: mozilla::layout::PRenderFrameParent* mozilla::LoneManagedOrNullAsserts<mozilla::layout::PRenderFrameParent>(mozilla::ManagedContainer<mozilla::layout::PRenderFrameParent> const&)
1002
1003
// appId's are for B2G only currently, where managees.Count() == 1. This is
1004
// not guaranteed currently in Desktop, so for paths used for desktop,
1005
// don't assert there's one managee.
1006
template<typename Protocol>
1007
Protocol*
1008
SingleManagedOrNull(const ManagedContainer<Protocol>& aManagees)
1009
0
{
1010
0
    if (aManagees.Count() != 1) {
1011
0
        return nullptr;
1012
0
    }
1013
0
    return aManagees.ConstIter().Get()->GetKey();
1014
0
}
1015
1016
} // namespace mozilla
1017
1018
1019
namespace IPC {
1020
1021
template <>
1022
struct ParamTraits<mozilla::ipc::ActorHandle>
1023
{
1024
    typedef mozilla::ipc::ActorHandle paramType;
1025
1026
    static void Write(Message* aMsg, const paramType& aParam)
1027
0
    {
1028
0
        IPC::WriteParam(aMsg, aParam.mId);
1029
0
    }
1030
1031
    static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
1032
    {
1033
        int id;
1034
        if (IPC::ReadParam(aMsg, aIter, &id)) {
1035
            aResult->mId = id;
1036
            return true;
1037
        }
1038
        return false;
1039
    }
1040
1041
    static void Log(const paramType& aParam, std::wstring* aLog)
1042
0
    {
1043
0
        aLog->append(StringPrintf(L"(%d)", aParam.mId));
1044
0
    }
1045
};
1046
1047
template<class PFooSide>
1048
struct ParamTraits<mozilla::ipc::Endpoint<PFooSide>>
1049
{
1050
    typedef mozilla::ipc::Endpoint<PFooSide> paramType;
1051
1052
    static void Write(Message* aMsg, const paramType& aParam)
1053
0
    {
1054
0
        IPC::WriteParam(aMsg, aParam.mValid);
1055
0
        if (!aParam.mValid) {
1056
0
            return;
1057
0
        }
1058
0
1059
0
        IPC::WriteParam(aMsg, static_cast<uint32_t>(aParam.mMode));
1060
0
1061
0
        // We duplicate the descriptor so that our own file descriptor remains
1062
0
        // valid after the write. An alternative would be to set
1063
0
        // aParam.mTransport.mValid to false, but that won't work because aParam
1064
0
        // is const.
1065
0
        mozilla::ipc::TransportDescriptor desc = mozilla::ipc::DuplicateDescriptor(aParam.mTransport);
1066
0
        IPC::WriteParam(aMsg, desc);
1067
0
1068
0
        IPC::WriteParam(aMsg, aParam.mMyPid);
1069
0
        IPC::WriteParam(aMsg, aParam.mOtherPid);
1070
0
    }
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::PProfilerChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::PProfilerChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> const&)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >::Write(IPC::Message*, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> const&)
1071
1072
    static bool Read(const Message* aMsg, PickleIterator* aIter, paramType* aResult)
1073
0
    {
1074
0
        MOZ_RELEASE_ASSERT(!aResult->mValid);
1075
0
1076
0
        if (!IPC::ReadParam(aMsg, aIter, &aResult->mValid)) {
1077
0
            return false;
1078
0
        }
1079
0
        if (!aResult->mValid) {
1080
0
            // Object is empty, but read succeeded.
1081
0
            return true;
1082
0
        }
1083
0
1084
0
        uint32_t mode;
1085
0
        if (!IPC::ReadParam(aMsg, aIter, &mode) ||
1086
0
            !IPC::ReadParam(aMsg, aIter, &aResult->mTransport) ||
1087
0
            !IPC::ReadParam(aMsg, aIter, &aResult->mMyPid) ||
1088
0
            !IPC::ReadParam(aMsg, aIter, &aResult->mOtherPid)) {
1089
0
            return false;
1090
0
        }
1091
0
        aResult->mMode = Channel::Mode(mode);
1092
0
        return true;
1093
0
    }
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPServiceChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::dom::PContentBridgeChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::PProfilerChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::PProfilerChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gmp::PGMPContentParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::plugins::PPluginModuleChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>*)
Unexecuted instantiation: IPC::ParamTraits<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> >::Read(IPC::Message const*, PickleIterator*, mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>*)
1094
1095
    static void Log(const paramType& aParam, std::wstring* aLog)
1096
    {
1097
        aLog->append(StringPrintf(L"Endpoint"));
1098
    }
1099
};
1100
1101
} // namespace IPC
1102
1103
1104
#endif  // mozilla_ipc_ProtocolUtils_h