2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:21:17 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
2004-04-18 18:21:17 +04:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:21:17 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:21:17 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 18:21:17 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 18:21:17 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-05-19 01:43:13 +04:00
|
|
|
|
|
|
|
// Force references to all of the symbols that we want exported from
|
|
|
|
// the dll that are located in the .lib files we link with
|
|
|
|
|
2010-01-30 15:45:56 +03:00
|
|
|
#ifdef XP_WIN
|
2005-05-17 03:34:11 +04:00
|
|
|
#include <windows.h>
|
2010-01-30 15:45:56 +03:00
|
|
|
#include "nsWindowsRegKey.h"
|
|
|
|
#ifdef DEBUG
|
|
|
|
#include "pure.h"
|
|
|
|
#endif
|
2006-03-08 22:29:25 +03:00
|
|
|
#endif
|
2005-06-13 20:45:22 +04:00
|
|
|
#include "nsXPCOMGlue.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsVoidArray.h"
|
2006-06-08 00:14:52 +04:00
|
|
|
#include "nsTArray.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsIAtom.h"
|
2000-07-29 06:58:43 +04:00
|
|
|
#include "nsFixedSizeAllocator.h"
|
2002-01-24 09:48:58 +03:00
|
|
|
#include "nsRecyclingAllocator.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsDeque.h"
|
|
|
|
#include "nsTraceRefcnt.h"
|
2003-08-05 09:29:10 +04:00
|
|
|
#include "nsTraceRefcntImpl.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsXPIDLString.h"
|
|
|
|
#include "nsIEnumerator.h"
|
|
|
|
#include "nsEnumeratorUtils.h"
|
|
|
|
#include "nsQuickSort.h"
|
2000-03-31 14:19:31 +04:00
|
|
|
#include "nsString.h"
|
2001-08-30 08:42:01 +04:00
|
|
|
#include "nsPrintfCString.h"
|
1999-11-10 05:11:08 +03:00
|
|
|
#include "nsSupportsArray.h"
|
2002-10-07 23:11:18 +04:00
|
|
|
#include "nsArrayEnumerator.h"
|
2003-10-06 07:05:40 +04:00
|
|
|
#include "nsProxyRelease.h"
|
1999-05-26 05:38:36 +04:00
|
|
|
#include "xpt_xdr.h"
|
|
|
|
#include "xptcall.h"
|
2000-01-29 02:35:55 +03:00
|
|
|
#include "nsILocalFile.h"
|
1999-06-04 01:51:14 +04:00
|
|
|
#include "nsIGenericFactory.h"
|
2000-01-05 06:56:47 +03:00
|
|
|
#include "nsIPipe.h"
|
2003-01-18 05:15:14 +03:00
|
|
|
#include "nsStreamUtils.h"
|
1999-08-12 03:48:08 +04:00
|
|
|
#include "nsWeakReference.h"
|
2000-01-18 01:32:13 +03:00
|
|
|
#include "nsTextFormatter.h"
|
2002-02-19 03:13:29 +03:00
|
|
|
#include "nsIStorageStream.h"
|
2006-01-02 05:30:32 +03:00
|
|
|
#include "nsStringStream.h"
|
1999-12-02 03:31:45 +03:00
|
|
|
#include "nsLinebreakConverter.h"
|
1999-11-17 00:14:52 +03:00
|
|
|
#include "nsIBinaryInputStream.h"
|
1999-11-28 05:17:24 +03:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
2001-09-06 01:28:38 +04:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
2000-08-23 21:27:06 +04:00
|
|
|
#include "nsReadableUtils.h"
|
2000-08-22 09:59:06 +04:00
|
|
|
#include "nsStaticNameTable.h"
|
2001-01-23 01:38:43 +03:00
|
|
|
#include "nsProcess.h"
|
2003-03-11 00:09:31 +03:00
|
|
|
#include "nsStringEnumerator.h"
|
2001-06-17 09:23:38 +04:00
|
|
|
#include "nsIInputStreamTee.h"
|
2002-10-03 07:43:11 +04:00
|
|
|
#include "nsCheapSets.h"
|
2003-04-02 10:53:57 +04:00
|
|
|
#include "nsHashKeys.h"
|
2003-04-10 17:27:16 +04:00
|
|
|
#include "nsTHashtable.h"
|
2000-08-31 17:29:29 +04:00
|
|
|
#include "pldhash.h"
|
2001-11-01 02:35:07 +03:00
|
|
|
#include "nsVariant.h"
|
2003-03-15 04:04:32 +03:00
|
|
|
#include "nsEscape.h"
|
2003-10-06 06:28:17 +04:00
|
|
|
#include "nsStreamUtils.h"
|
2004-10-25 23:34:45 +04:00
|
|
|
#include "nsNativeCharsetUtils.h"
|
2004-11-15 23:16:52 +03:00
|
|
|
#include "nsInterfaceRequestorAgg.h"
|
2004-11-25 02:21:14 +03:00
|
|
|
#include "nsHashPropertyBag.h"
|
2006-05-03 20:11:14 +04:00
|
|
|
#include "nsXPCOMStrings.h"
|
2005-02-03 01:18:37 +03:00
|
|
|
#include "nsStringBuffer.h"
|
2006-02-22 17:07:21 +03:00
|
|
|
#include "nsCategoryCache.h"
|
2007-01-05 01:31:26 +03:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2007-01-05 05:17:41 +03:00
|
|
|
#include "nsCycleCollector.h"
|
2006-05-10 21:30:15 +04:00
|
|
|
#include "nsThreadUtils.h"
|
2007-05-23 00:45:13 +04:00
|
|
|
#include "nsTObserverArray.h"
|
2009-05-14 09:38:13 +04:00
|
|
|
#include "nsWildCard.h"
|
2009-04-22 17:41:38 +04:00
|
|
|
#include "mozilla/Mutex.h"
|
|
|
|
#include "mozilla/Monitor.h"
|
|
|
|
#include "mozilla/CondVar.h"
|
2010-04-21 09:08:00 +04:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2005-05-17 01:33:33 +04:00
|
|
|
|
2009-04-22 16:28:23 +04:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2006-05-03 20:11:14 +04:00
|
|
|
class nsCStringContainer : private nsStringContainer_base { };
|
|
|
|
class nsStringContainer : private nsStringContainer_base { };
|
|
|
|
|
1999-05-19 01:43:13 +04:00
|
|
|
void XXXNeverCalled()
|
|
|
|
{
|
2005-09-01 16:50:53 +04:00
|
|
|
GRE_GetGREPathWithProperties(nsnull, 0, nsnull, 0, nsnull, 0);
|
2000-01-18 01:32:13 +03:00
|
|
|
nsTextFormatter::snprintf(nsnull,0,nsnull);
|
2000-03-05 13:14:50 +03:00
|
|
|
nsTextFormatter::smprintf(nsnull, nsnull);
|
|
|
|
nsTextFormatter::smprintf_free(nsnull);
|
1999-05-19 01:43:13 +04:00
|
|
|
nsVoidArray();
|
2001-12-21 04:10:07 +03:00
|
|
|
nsSmallVoidArray();
|
2006-06-08 00:14:52 +04:00
|
|
|
{
|
|
|
|
nsTArray<PRBool> array1(1), array2(1);
|
|
|
|
PRBool a, b, c;
|
|
|
|
a = b = c = PR_FALSE;
|
|
|
|
array1.AppendElement(a);
|
|
|
|
array2.InsertElementAt(b, 0);
|
|
|
|
array2.InsertElementAt(c, 0);
|
|
|
|
array1.AppendElements(array2);
|
|
|
|
}
|
2007-05-23 00:45:13 +04:00
|
|
|
{
|
|
|
|
nsTObserverArray<PRBool> dummyObserverArray;
|
|
|
|
PRBool a = PR_FALSE;
|
2007-12-20 10:30:04 +03:00
|
|
|
dummyObserverArray.AppendElement(a);
|
|
|
|
dummyObserverArray.RemoveElement(a);
|
2007-05-23 00:45:13 +04:00
|
|
|
dummyObserverArray.Clear();
|
|
|
|
}
|
2002-08-06 08:15:10 +04:00
|
|
|
nsStringHashSet();
|
|
|
|
nsCStringHashSet();
|
|
|
|
nsInt32HashSet();
|
|
|
|
nsVoidHashSet();
|
2002-10-03 07:43:11 +04:00
|
|
|
nsCheapStringSet();
|
|
|
|
nsCheapInt32Set();
|
1999-11-10 05:10:39 +03:00
|
|
|
nsSupportsArray();
|
1999-05-19 01:43:13 +04:00
|
|
|
NS_GetNumberOfAtoms();
|
2006-03-22 23:42:55 +03:00
|
|
|
NS_NewPipe(nsnull, nsnull, 0, 0, PR_FALSE, PR_FALSE, nsnull);
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewPipe2(nsnull, nsnull, PR_FALSE, PR_FALSE, 0, 0, nsnull);
|
|
|
|
NS_NewInputStreamReadyEvent(nsnull, nsnull, nsnull);
|
|
|
|
NS_NewOutputStreamReadyEvent(nsnull, nsnull, nsnull);
|
2003-10-06 06:28:17 +04:00
|
|
|
NS_AsyncCopy(nsnull, nsnull, nsnull, NS_ASYNCCOPY_VIA_READSEGMENTS, 0, nsnull, nsnull);
|
2005-12-12 03:47:21 +03:00
|
|
|
{
|
|
|
|
nsCString temp;
|
|
|
|
NS_ConsumeStream(nsnull, 0, temp);
|
|
|
|
}
|
2005-03-26 05:20:36 +03:00
|
|
|
NS_InputStreamIsBuffered(nsnull);
|
|
|
|
NS_OutputStreamIsBuffered(nsnull);
|
2006-01-11 04:50:15 +03:00
|
|
|
NS_CopySegmentToStream(nsnull, nsnull, nsnull, 0, 0, nsnull);
|
|
|
|
NS_CopySegmentToBuffer(nsnull, nsnull, nsnull, 0, 0, nsnull);
|
|
|
|
NS_DiscardSegment(nsnull, nsnull, nsnull, 0, 0, nsnull);
|
2006-03-03 19:27:35 +03:00
|
|
|
NS_WriteSegmentThunk(nsnull, nsnull, nsnull, 0, 0, 0);
|
2006-01-02 05:30:32 +03:00
|
|
|
NS_NewByteInputStream(nsnull, nsnull, 0, NS_ASSIGNMENT_COPY);
|
|
|
|
NS_NewCStringInputStream(nsnull, nsCString());
|
|
|
|
NS_NewStringInputStream(nsnull, nsString());
|
2003-04-10 17:27:16 +04:00
|
|
|
PL_DHashStubEnumRemove(nsnull, nsnull, nsnull, nsnull);
|
2003-06-03 14:52:26 +04:00
|
|
|
nsIDHashKey::HashKey(nsnull);
|
2000-07-29 06:58:43 +04:00
|
|
|
nsFixedSizeAllocator a;
|
2002-01-24 09:48:58 +03:00
|
|
|
nsRecyclingAllocator recyclingAllocator(2);
|
2000-07-29 07:13:41 +04:00
|
|
|
a.Init(0, 0, 0, 0, 0);
|
|
|
|
a.Alloc(0);
|
|
|
|
a.Free(0, 0);
|
2005-06-03 19:00:34 +04:00
|
|
|
nsDeque d(nsnull);
|
|
|
|
nsDequeIterator di(d);
|
2003-08-05 09:29:10 +04:00
|
|
|
nsTraceRefcnt::LogAddCOMPtr(nsnull, nsnull);
|
|
|
|
nsTraceRefcntImpl::DumpStatistics();
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewEmptyEnumerator(nsnull);
|
|
|
|
NS_QuickSort(nsnull, 0, 0, nsnull, nsnull);
|
2000-03-31 13:08:17 +04:00
|
|
|
nsString();
|
2003-10-06 07:05:40 +04:00
|
|
|
NS_ProxyRelease(nsnull, nsnull, PR_FALSE);
|
2003-06-03 14:52:26 +04:00
|
|
|
XPT_DoString(nsnull, nsnull, nsnull);
|
|
|
|
XPT_DoHeader(nsnull, nsnull, nsnull);
|
2006-11-20 20:03:38 +03:00
|
|
|
NS_InvokeByIndex(nsnull, 0, 0, nsnull);
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewGenericFactory(nsnull, nsnull);
|
|
|
|
NS_NewGenericModule2(nsnull, nsnull);
|
|
|
|
NS_GetWeakReference(nsnull);
|
1999-11-28 05:17:24 +03:00
|
|
|
nsCOMPtr<nsISupports> dummyFoo(do_GetInterface(nsnull));
|
2002-02-19 03:13:29 +03:00
|
|
|
NS_NewStorageStream(0,0, nsnull);
|
2000-01-05 06:56:47 +03:00
|
|
|
nsString foo;
|
2001-08-30 08:42:01 +04:00
|
|
|
nsPrintfCString bar("");
|
2000-01-05 06:56:47 +03:00
|
|
|
nsLinebreakConverter::ConvertStringLineBreaks(foo,
|
2000-01-29 02:35:55 +03:00
|
|
|
nsLinebreakConverter::eLinebreakAny, nsLinebreakConverter::eLinebreakContent);
|
2005-01-04 22:31:31 +03:00
|
|
|
NS_NewLocalFile(EmptyString(), PR_FALSE, nsnull);
|
|
|
|
NS_NewNativeLocalFile(EmptyCString(), PR_FALSE, nsnull);
|
2004-01-15 09:14:18 +03:00
|
|
|
new nsProcess();
|
2000-08-22 09:59:06 +04:00
|
|
|
nsStaticCaseInsensitiveNameTable();
|
2000-08-23 21:27:06 +04:00
|
|
|
nsAutoString str1;
|
2004-02-19 05:44:03 +03:00
|
|
|
str1.AssignWithConversion(nsnull, 0);
|
2000-08-23 21:27:06 +04:00
|
|
|
nsCAutoString str2;
|
|
|
|
ToNewUnicode(str1);
|
|
|
|
ToNewUnicode(str2);
|
|
|
|
ToNewCString(str1);
|
|
|
|
ToNewCString(str2);
|
2003-06-03 14:52:26 +04:00
|
|
|
PL_DHashTableFinish(nsnull);
|
|
|
|
NS_NewInputStreamTee(nsnull, nsnull, nsnull);
|
2002-10-07 23:11:18 +04:00
|
|
|
nsCOMArray<nsISupports> dummyArray;
|
|
|
|
NS_NewArrayEnumerator(nsnull, dummyArray);
|
2004-01-15 09:14:18 +03:00
|
|
|
new nsVariant();
|
2003-03-15 04:04:32 +03:00
|
|
|
nsUnescape(nsnull);
|
|
|
|
nsEscape(nsnull, url_XAlphas);
|
2009-01-18 23:14:14 +03:00
|
|
|
nsTArray<nsString> array;
|
2003-03-11 00:09:31 +03:00
|
|
|
NS_NewStringEnumerator(nsnull, &array);
|
|
|
|
NS_NewAdoptingStringEnumerator(nsnull, &array);
|
2009-01-22 08:01:17 +03:00
|
|
|
nsTArray<nsCString> carray;
|
2003-03-11 00:09:31 +03:00
|
|
|
NS_NewUTF8StringEnumerator(nsnull, &carray);
|
|
|
|
NS_NewAdoptingUTF8StringEnumerator(nsnull, &carray);
|
2003-10-09 20:59:23 +04:00
|
|
|
nsVoidableString str3;
|
2004-03-06 06:29:49 +03:00
|
|
|
{
|
|
|
|
nsAdoptingCString foo, bar;
|
|
|
|
foo = bar;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
nsAdoptingString foo, bar;
|
|
|
|
foo = bar;
|
|
|
|
}
|
2004-10-25 23:34:45 +04:00
|
|
|
NS_CopyNativeToUnicode(str2, str1);
|
|
|
|
NS_CopyUnicodeToNative(str1, str2);
|
2004-11-01 23:22:49 +03:00
|
|
|
{
|
|
|
|
nsID id;
|
2004-11-23 23:53:38 +03:00
|
|
|
CallCreateInstance(id, nsnull, id, nsnull);
|
|
|
|
CallCreateInstance("", nsnull, id, nsnull);
|
|
|
|
CallGetClassObject(id, id, nsnull);
|
2004-11-24 00:39:51 +03:00
|
|
|
CallGetClassObject("", id, nsnull);
|
2004-11-08 04:27:35 +03:00
|
|
|
|
|
|
|
nsServiceManager::GetGlobalServiceManager(nsnull);
|
2004-11-01 23:22:49 +03:00
|
|
|
}
|
2004-11-15 23:16:52 +03:00
|
|
|
NS_NewInterfaceRequestorAggregation(nsnull, nsnull, nsnull);
|
2004-11-25 02:21:14 +03:00
|
|
|
NS_NewHashPropertyBag(nsnull);
|
2004-11-25 10:03:20 +03:00
|
|
|
nsDependentString depstring;
|
|
|
|
depstring.Rebind(nsnull, PRUint32(0));
|
|
|
|
nsDependentCString depcstring;
|
|
|
|
depcstring.Rebind(nsnull, PRUint32(0));
|
2004-11-30 05:41:31 +03:00
|
|
|
// nsStringAPI
|
|
|
|
nsCStringContainer sc1;
|
|
|
|
NS_CStringContainerInit(sc1);
|
|
|
|
NS_CStringContainerInit2(sc1, nsnull, 0, 0);
|
|
|
|
NS_CStringContainerFinish(sc1);
|
|
|
|
NS_CStringGetData(str2, nsnull, nsnull);
|
2005-04-27 05:38:35 +04:00
|
|
|
NS_CStringGetMutableData(str2, 0, nsnull);
|
2004-11-30 05:41:31 +03:00
|
|
|
NS_CStringSetData(str2, nsnull, 0);
|
|
|
|
NS_CStringSetDataRange(str2, 0, 0, nsnull, 0);
|
|
|
|
NS_CStringCopy(str2, str2);
|
|
|
|
NS_CStringCloneData(str2);
|
|
|
|
nsStringContainer sc2;
|
|
|
|
NS_StringContainerInit(sc2);
|
|
|
|
NS_StringContainerInit2(sc2, nsnull, 0, 0);
|
|
|
|
NS_StringContainerFinish(sc2);
|
|
|
|
NS_StringGetData(str1, nsnull, nsnull);
|
2005-04-27 05:38:35 +04:00
|
|
|
NS_StringGetMutableData(str1, 0, nsnull);
|
2004-11-30 05:41:31 +03:00
|
|
|
NS_StringSetData(str1, nsnull, 0);
|
|
|
|
NS_StringSetDataRange(str1, 0, 0, nsnull, 0);
|
|
|
|
NS_StringCopy(str1, str1);
|
|
|
|
NS_StringCloneData(str1);
|
|
|
|
NS_UTF16ToCString(str1, NS_CSTRING_ENCODING_ASCII, str2);
|
|
|
|
NS_CStringToUTF16(str2, NS_CSTRING_ENCODING_ASCII, str1);
|
2005-02-03 01:18:37 +03:00
|
|
|
|
2006-02-22 17:07:21 +03:00
|
|
|
nsCategoryObserver catobs(nsnull, nsnull);
|
|
|
|
nsCategoryCache<nsILocalFile> catcache(nsnull);
|
|
|
|
|
2005-02-03 01:18:37 +03:00
|
|
|
// nsStringBuffer.h
|
|
|
|
{
|
|
|
|
nsString x;
|
|
|
|
nsCString y;
|
|
|
|
nsStringBuffer b;
|
|
|
|
b.AddRef();
|
|
|
|
b.Release();
|
|
|
|
nsStringBuffer::Alloc(0);
|
|
|
|
nsStringBuffer::Realloc(nsnull, 0);
|
|
|
|
nsStringBuffer::FromString(x);
|
|
|
|
nsStringBuffer::FromString(y);
|
|
|
|
b.ToString(0, x);
|
|
|
|
b.ToString(0, y);
|
|
|
|
}
|
2005-05-17 01:23:09 +04:00
|
|
|
|
2007-05-24 18:10:02 +04:00
|
|
|
nsXPCOMCycleCollectionParticipant();
|
2007-01-05 05:17:41 +03:00
|
|
|
nsCycleCollector_collect();
|
2010-01-30 15:45:56 +03:00
|
|
|
#ifdef XP_WIN
|
2009-12-18 08:54:02 +03:00
|
|
|
sXPCOMHasLoadedNewDLLs = !sXPCOMHasLoadedNewDLLs;
|
|
|
|
NS_SetHasLoadedNewDLLs();
|
2005-05-17 01:23:09 +04:00
|
|
|
NS_NewWindowsRegKey(nsnull);
|
2010-01-30 15:45:56 +03:00
|
|
|
#if defined (DEBUG) && !defined (WINCE)
|
|
|
|
PurePrintf(0);
|
|
|
|
#endif
|
2005-05-17 01:33:33 +04:00
|
|
|
#endif
|
2006-05-10 21:30:15 +04:00
|
|
|
|
|
|
|
NS_NewThread(nsnull, nsnull);
|
|
|
|
NS_GetCurrentThread(nsnull);
|
|
|
|
NS_GetCurrentThread();
|
|
|
|
NS_GetMainThread(nsnull);
|
|
|
|
NS_DispatchToCurrentThread(nsnull);
|
|
|
|
NS_DispatchToMainThread(nsnull, 0);
|
|
|
|
NS_ProcessPendingEvents(nsnull, 0);
|
|
|
|
NS_HasPendingEvents(nsnull);
|
|
|
|
NS_ProcessNextEvent(nsnull, PR_FALSE);
|
2009-04-22 16:28:23 +04:00
|
|
|
Mutex theMutex("dummy");
|
|
|
|
Monitor theMonitor("dummy2");
|
|
|
|
CondVar theCondVar(theMutex, "dummy3");
|
2010-04-22 03:40:27 +04:00
|
|
|
TimeStamp theTimeStamp = TimeStamp::Now();
|
|
|
|
TimeDuration theTimeDuration = TimeDuration::FromMilliseconds(0);
|
2009-05-14 09:38:13 +04:00
|
|
|
|
|
|
|
NS_WildCardValid((const char *)nsnull);
|
|
|
|
NS_WildCardValid((const PRUnichar *)nsnull);
|
|
|
|
NS_WildCardMatch((const char *)nsnull, (const char *)nsnull, PR_FALSE);
|
|
|
|
NS_WildCardMatch((const PRUnichar *)nsnull, (const PRUnichar *)nsnull, PR_FALSE);
|
2001-03-12 23:43:02 +03:00
|
|
|
}
|