Searched refs:PRUint32 (Results 1 - 25 of 609) sorted by relevance

1234567891011>>

/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A DipcMessagePrimitives.h46 ipcMessage_DWORD(const nsID &target, PRUint32 first)
51 PRUint32 First() const
53 return ((PRUint32 *) Data())[0];
60 ipcMessage_DWORD_DWORD(const nsID &target, PRUint32 first, PRUint32 second)
62 PRUint32 data[2] = { first, second };
66 PRUint32 First() const
68 return ((PRUint32 *) Data())[0];
71 PRUint32 Second() const
73 return ((PRUint32 *) Dat
[all...]
H A DipcMessage.h63 PRUint32 mLen;
103 ipcMessage(const nsID &target, const char *data, PRUint32 dataLen)
129 NS_HIDDEN_(PRStatus) Init(const nsID &target, const char *data, PRUint32 dataLen);
140 NS_HIDDEN_(PRStatus) SetData(PRUint32 offset, const char *data, PRUint32 dataLen);
161 PRUint32 DataLen() const { return mMsgHdr->mLen - IPC_MSG_HEADER_SIZE; }
163 PRUint32 MsgLen() const { return mMsgHdr->mLen; }
173 NS_HIDDEN_(PRBool) Equals(const nsID &target, const char *data, PRUint32 dataLen) const;
181 PRUint32 bufLen,
182 PRUint32 *bytesWritte
[all...]
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsIProgrammingLanguage.idl60 const PRUint32 UNKNOWN = 0;
61 const PRUint32 CPLUSPLUS = 1;
62 const PRUint32 JAVASCRIPT = 2;
63 const PRUint32 PYTHON = 3;
64 const PRUint32 PERL = 4;
65 const PRUint32 JAVA = 5;
66 const PRUint32 ZX81_BASIC = 6; // it could happen :)
67 const PRUint32 JAVASCRIPT2 = 7;
H A DnsID.cpp133 m0, (PRUint32) m1, (PRUint32) m2,
134 (PRUint32) m3[0], (PRUint32) m3[1], (PRUint32) m3[2],
135 (PRUint32) m3[3], (PRUint32) m3[4], (PRUint32) m3[5],
136 (PRUint32) m3[6], (PRUint32) m
[all...]
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsByteArrayInputStream.h51 nsByteArrayInputStream (char *buffer, PRUint32 nbytes);
57 PRUint32 _nbytes;
58 PRUint32 _pos;
H A DnsSegmentedBuffer.h59 NS_COM nsresult Init(PRUint32 segmentSize, PRUint32 maxSize,
76 inline PRUint32 GetSegmentCount() {
83 inline PRUint32 GetSegmentSize() { return mSegmentSize; }
84 inline PRUint32 GetMaxSize() { return mMaxSize; }
85 inline PRUint32 GetSize() { return GetSegmentCount() * mSegmentSize; }
87 inline char* GetSegment(PRUint32 indx) {
95 PRUint32 result = n & (mSegmentArrayCount - 1);
106 PRUint32 mSegmentSize;
107 PRUint32 mMaxSiz
[all...]
H A DnsIUnicharInputStream.h49 PRUint32 aToOffset,
50 PRUint32 aCount,
51 PRUint32 *aWriteCount);
65 PRUint32 aCount,
66 PRUint32 *aReadCount) = 0;
70 PRUint32 aCount,
71 PRUint32 *aReadCount) = 0;
H A DnsStorageStream.h83 PRUint32 mSegmentSize; // All segments, except possibly the last, are of this size
85 PRUint32 mSegmentSizeLog2; // log2(mSegmentSize)
91 PRUint32 mLogicalLength; // Number of bytes written to stream
94 PRUint32 SegNum(PRUint32 aPosition) {return aPosition >> mSegmentSizeLog2;}
95 PRUint32 SegOffset(PRUint32 aPosition) {return aPosition & (mSegmentSize - 1);}
H A DnsIStorageStream.idl69 void init(in PRUint32 segmentSize, in PRUint32 maxSize, in nsIMemory segmentAllocator);
95 attribute PRUint32 length;
106 NS_NewStorageStream(PRUint32 segmentSize, PRUint32 maxSize, nsIStorageStream **result);
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dstrlen.c43 PR_IMPLEMENT(PRUint32)
55 if( sizeof(PRUint32) < sizeof(size_t) )
58 return (PRUint32)l;
61 PR_IMPLEMENT(PRUint32)
62 PL_strnlen(const char *str, PRUint32 max)
70 return (PRUint32)(s - str);
H A Dbase64.c52 PRUint32 b32 = (PRUint32)0;
58 b32 |= (PRUint32)src[i];
63 dest[i] = base[ (PRUint32)((b32>>j) & 0x3F) ];
77 dest[0] = base[ (PRUint32)((src[0]>>2) & 0x3F) ];
78 dest[1] = base[ (PRUint32)(((src[0] & 0x03) << 4) | ((src[1] >> 4) & 0x0F)) ];
79 dest[2] = base[ (PRUint32)((src[1] & 0x0F) << 2) ];
91 dest[0] = base[ (PRUint32)((src[0]>>2) & 0x3F) ];
92 dest[1] = base[ (PRUint32)((src[0] & 0x03) << 4) ];
102 PRUint32 srcle
[all...]
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DnsIClassInfo.idl60 void getInterfaces(out PRUint32 count,
75 nsISupports getHelperForLanguage(in PRUint32 language);
98 readonly attribute PRUint32 implementationLanguage;
103 const PRUint32 SINGLETON = 1 << 0;
104 const PRUint32 THREADSAFE = 1 << 1;
105 const PRUint32 MAIN_THREAD_ONLY = 1 << 2;
106 const PRUint32 DOM_OBJECT = 1 << 3;
107 const PRUint32 PLUGIN_OBJECT = 1 << 4;
108 const PRUint32 EAGER_CLASSINFO = 1 << 5;
113 const PRUint32 CONTENT_NOD
[all...]
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/
H A Dxptcinvoke_unsupported.cpp43 XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
44 PRUint32 paramCount, nsXPTCVariant* params)
H A Dxptcinvoke_x86_solaris.cpp48 static PRUint32
49 invoke_count_words(PRUint32 paramCount, nsXPTCVariant* s)
51 PRUint32 result = 0;
52 for(PRUint32 i = 0; i < paramCount; i++, s++)
73 invoke_copy_to_stack(PRUint32 paramCount, nsXPTCVariant* s, PRUint32* d)
75 for(PRUint32 i = 0; i < paramCount; i++, d++, s++)
103 XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
104 PRUint32 paramCount, nsXPTCVariant* params)
107 PRUint32 resul
[all...]
H A Dxptcinvoke_gcc_x86_unix.cpp51 invoke_copy_to_stack(PRUint32 paramCount, nsXPTCVariant* s, PRUint32* d)
53 for(PRUint32 i = paramCount; i >0; i--, d++, s++)
74 PRUint32
77 PRUint32 dummy1;
79 (PRUint32, nsXPTCVariant*, PRUint32*) = invoke_copy_to_stack;
95 XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
96 PRUint32 paramCount, nsXPTCVariant* params);
120 nsresult _XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodInde
[all...]
H A Dxptcinvoke_mips.cpp50 invoke_count_words(PRUint32 paramCount, nsXPTCVariant* s)
54 PRUint32 result = 1;
55 for (PRUint32 i = 0; i < paramCount; i++, s++)
73 return (result + 1) & ~(PRUint32)1;
77 invoke_copy_to_stack(PRUint32* d, PRUint32 paramCount,
83 for (PRUint32 i = 0; i < paramCount; i++, d++, s++)
111 extern "C" nsresult _XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodIndex,
112 PRUint32 paramCount,
117 XPTC_InvokeByIndex(nsISupports* that, PRUint32 methodInde
[all...]
/vbox/src/VBox/Frontends/VBoxFB/
H A DFramebuffer.h32 NS_IMETHOD GetWidth(PRUint32 *width);
33 NS_IMETHOD GetHeight(PRUint32 *height);
37 NS_IMETHOD GetBitsPerPixel(PRUint32 *bitsPerPixel);
38 NS_IMETHOD GetBytesPerLine(PRUint32 *bytesPerLine);
39 NS_IMETHOD GetPixelFormat(PRUint32 *pixelFormat);
41 NS_IMETHOD GetHeightReduction(PRUint32 *heightReduction);
44 NS_IMETHOD NotifyUpdate(PRUint32 x, PRUint32 y, PRUint32 w, PRUint32
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/common/
H A DtmTransaction.h71 PRUint32 action; // defined by tmUtils.h will be > 0
73 PRUint32 reserved; // not currently used, maintaining word alignment
158 nsresult Init(PRUint32 aOwnerID,
160 PRUint32 aAction,
163 PRUint32 aLength);
175 PRUint32 GetMessageLength() const {
190 PRUint32 GetRawMessageLength() const { return mRawMessageLength; }
201 PRUint32 GetAction() const { return mHeader->action; }
213 PRUint32 GetOwnerID() const { return mOwnerID; }
229 PRUint32 mRawMessageLengt
[all...]
H A DtmVector.h107 void RemoveAt(PRUint32 aIndex);
119 void* operator[](PRUint32 index) {
127 PRUint32 Count() { return mCount; }
138 PRUint32 Size() { return mNext; }
149 PRUint32 mNext; // next element insertion slot (0 based)
150 PRUint32 mCount; // how many elements in the Vector (1 based)
151 PRUint32 mCapacity; // current capacity of the Vector (1 based)
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsByteBuffer.h52 NS_IMETHOD Init(PRUint32 aBufferSize);
53 NS_IMETHOD_(PRUint32) GetLength(void) const;
54 NS_IMETHOD_(PRUint32) GetBufferSize(void) const;
56 NS_IMETHOD_(PRBool) Grow(PRUint32 aNewSize);
58 PRUint32 aKeep);
61 PRUint32 mSpace;
62 PRUint32 mLength;
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprinrval.h72 typedef PRUint32 PRIntervalTime;
128 ** RETURN: PRUint32
137 NSPR_API(PRUint32) PR_TicksPerSecond(void);
145 ** INPUTS: PRUint32
156 NSPR_API(PRIntervalTime) PR_SecondsToInterval(PRUint32 seconds);
157 NSPR_API(PRIntervalTime) PR_MillisecondsToInterval(PRUint32 milli);
158 NSPR_API(PRIntervalTime) PR_MicrosecondsToInterval(PRUint32 micro);
168 ** RETURN: PRUint32
177 NSPR_API(PRUint32) PR_IntervalToSeconds(PRIntervalTime ticks);
178 NSPR_API(PRUint32) PR_IntervalToMillisecond
[all...]
/vbox/src/libs/xpcom18a4/xpcom/threads/
H A DnsIThread.idl56 typedef PRUint32 PRThreadPriority;
57 typedef PRUint32 PRThreadScope;
58 typedef PRUint32 PRThreadState;
72 const PRUint32 PRIORITY_LOW = 0;
73 const PRUint32 PRIORITY_NORMAL = 1;
74 const PRUint32 PRIORITY_HIGH = 2;
75 const PRUint32 PRIORITY_URGENT = 3;
77 const PRUint32 SCOPE_LOCAL = 0;
78 const PRUint32 SCOPE_GLOBAL = 1;
79 const PRUint32 SCOPE_BOUN
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/module/
H A DtmQueue.h88 PRInt32 Init(const char* aName, PRUint32 aID, tmTransactionManager *aTM);
110 PRInt32 AttachClient(PRUint32 aClientID);
124 PRInt32 DetachClient(PRUint32 aClientID);
131 void FlushQueue(PRUint32 aClientID);
155 PRUint32 GetID() const { return mID; }
170 PRBool IsAttached(PRUint32 aClientID);
180 PRUint32 mID; // a number linked to the name in the mTM
/vbox/src/libs/xpcom18a4/nsprpub/lib/ds/
H A Dplarenas.h69 const char *name, PRUint32 size, PRUint32 align);
88 PLArenaPool *pool, const char *name, PRUint32 size, PRUint32 align);
115 PR_EXTERN(void *) PL_ArenaAllocate(PLArenaPool *pool, PRUint32 nb);
118 PLArenaPool *pool, void *p, PRUint32 size, PRUint32 incr);
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsTDependentSubstring.h52 NS_COM void Rebind( const abstract_string_type&, PRUint32 startPos, PRUint32 length = size_type(-1) );
53 NS_COM void Rebind( const substring_type&, PRUint32 startPos, PRUint32 length = size_type(-1) );
63 nsTDependentSubstring_CharT( const abstract_string_type& str, PRUint32 startPos, PRUint32 length = size_type(-1) )
69 nsTDependentSubstring_CharT( const substring_type& str, PRUint32 startPos, PRUint32 length = size_type(-1) )
90 Substring( const nsTAString_CharT& str, PRUint32 startPos, PRUint32 lengt
[all...]

Completed in 273 milliseconds

1234567891011>>