symbian源码分析-位置

来源:互联网 发布:大数据优点 编辑:程序博客网 时间:2024/05/22 14:19

 D:\e\symbian_code\symbian_src\src_oss_os 的目录

src_oss_os_boardsupport.zip                   

src_oss_os_bt.zip                                                                    

src_oss_os_buildtools.zip              

src_oss_os_cellularsrv.zip                                //电话功能

src_oss_os_commsfw.zip      

  commsfw\commsconfig\commsdatabaseshim\commdbshim\Notifier\inc\NotifierServ.H         

NONSHARABLE_CLASS(CShutdownWatchDog) : public CTimer                                        //

NONSHARABLE_CLASS(CCommsdatNotifierScheduler) : public CActiveScheduler      //

EXPORT_C TInt RCommsdatNotifier::Connect()
/** Connects to the server.
*

* @return KErrNone if successful; otherwise, a system-wide error code. */
{
TInt ret = CreateSession(COMMSDATNOTIFIER_SERVER_NAME,Version(),-1);


TInt outerLoopRetryCount = 0;
while ((ret == KErrNotFound) && (outerLoopRetryCount++ < KCommsDatServerMaxOuterLoopRetryCount))
{
ret=StartNotifierProcess();
if (ret==KErrNone || ret==KErrAlreadyExists)
{
ret = CreateSession(COMMSDATNOTIFIER_SERVER_NAME,Version(),-1);
TInt innerLoopRetryCount = 0;
while ((ret == KErrNotFound) && (innerLoopRetryCount++ < KCommsDatServerMaxInnerLoopRetryCount))
{
User::After(KCommsDatServerRetryTimeout);
ret = CreateSession(COMMSDATNOTIFIER_SERVER_NAME,Version(),-1);
}

}
else
{
break; // we can't do anything more
}
}      
return ret;
}


src_oss_os_deviceplatformrelease.zip          //

src_oss_os_devicesrv.zip                                 //

src_oss_os_graphics.zip                                   //CFbsBitmap

src_oss_os_imagingext.zip             

 src_oss_os_kernelhwsrv.zip                           //CActive (ub_act.cpp)

src_oss_os_lbs.zip                    

 src_oss_os_mm.zip

src_oss_os_networkingsrv.zip           

src_oss_os_osrndtools.zip

========================================================================
RELEASE NOTE FOR STIF - STIF_201003 (7.3.25)
SUPPORTING SERIES 60 3.0 ->
========================================================================


Product Description:
====================
STIF is a test harness for testing Symbian & S60 non-UI components.
This widely used test framework can be used for both test case implementation and test cases execution.


Features :
=========
- Test module implements test cases
- Error and exception handling
- Concurrent test case execution
- Test Module Template Wizard (createtestmodule.BAT)
- Memory leak detection
- File parsing with STIF Parser
- Logging facilities for test modules with STIF Logger
- Scripted test cases with Test Scripter
- Test case synchronization with STIF Event System
- Test case combining with Test Combiner
- Write once, test everywhere, e.g. test cases made during the development phase can be used in system testing, automatic release testing, etc.
- Easy to use
- Multiple test cases can be executed concurrently.
- All execution errors and exceptions are handled properly and reported to tester.
- Excellent support for test automation.
- Symbian OS 9.1 features supported (Platform Security)
- Releases bi-weekly
- Heap and stack configuring
- OOM test support
- Test Interference support
- S60\Symbian UI component test case implementation support


System Requirements:
====================
Basic Requirements:
- S60/Symbian OS development environment installed

Known Issues:
===========
If problems with compilation appears (missing platform_paths.hrh file error message), 
please use EnvPatcher.pl script from stif/envpatcher folder to fix environment. 




src_oss_os_ossrv.zip                  

 src_oss_os_persistentdata.zip

src_oss_os_security.zip                

src_oss_os_textandloc.zip

src_oss_os_usb.zip                     

src_oss_os_wlan.zip

src_oss_os_xmlsrv.zip     
原创粉丝点击