Warning:
The number of runtime covered functions are larger than the
number of reachable functions. This means that Fuzz Introspector found
there are more functions covered at runtime than what is considered
reachable based on the static analysis. This is a limitation in the
analysis as anything covered at runtime is by definition reachable by the
fuzzers.
This is likely due to a limitation in the static analysis. In this case, the
count of functions covered at runtime is the true value, which means this
is what should be considered "achieved" by the fuzzer.
Use the project functions table below to query all functions that were not covered at runtime.
The following table shows data about each function in the project. The functions included in this table correspond to all functions that exist in the executables of the fuzzers. As such, there may be functions that are from third-party libraries.
For further technical details on the meaning of columns in the below table, please see the Glossary .
Func name | Functions filename | Args | Function call depth | Reached by Fuzzers | Fuzzers runtime hit | Func lines hit % | I Count | BB Count | Cyclomatic complexity | Functions reached | Reached by functions | Accumulated cyclomatic complexity | Undiscovered complexity |
---|
The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview
Call tree overview bitmap:
The distribution of callsites in terms of coloring is
Color | Runtime hitcount | Callsite count | Percentage |
---|---|---|---|
red | 0 | 20 | 44.4% |
gold | [1:9] | 19 | 42.2% |
yellow | [10:29] | 5 | 11.1% |
greenyellow | [30:49] | 0 | 0.0% |
lawngreen | 50+ | 1 | 2.22% |
All colors | 45 | 100 |
The following nodes represent call sites where fuzz blockers occur.
Amount of callsites blocked | Calltree index | Parent function | Callsite | Largest blocked function |
---|---|---|---|---|
18 | 5 |
[org.osgi.framework.Version].
|
call site: 00005 | [org.osgi.framework.Version].validate() |
2 | 2 | [CoreVersionFuzzer].fuzzerTestOneInput(com.code_intelligence.jazzer.api.FuzzedDataProvider) | call site: 00002 |
Function name | source code lines | source lines hit | percentage hit |
---|
filename | functions hit |
---|---|
CoreVersionFuzzer.java | 8 |
osgi/org.osgi.frameworkorg/osgi/framework/Version.java | 20 |
The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview
Call tree overview bitmap:
The distribution of callsites in terms of coloring is
Color | Runtime hitcount | Callsite count | Percentage |
---|---|---|---|
red | 0 | 19 | 45.2% |
gold | [1:9] | 21 | 50.0% |
yellow | [10:29] | 1 | 2.38% |
greenyellow | [30:49] | 0 | 0.0% |
lawngreen | 50+ | 1 | 2.38% |
All colors | 42 | 100 |
The following nodes represent call sites where fuzz blockers occur.
Amount of callsites blocked | Calltree index | Parent function | Callsite | Largest blocked function |
---|---|---|---|---|
19 | 12 | [CoreVersionRangeFuzzer].test() | call site: 00012 | [org.osgi.test.cases.webcontainer.util.validate.VersionRange].processVersionAttribute(String) |
Function name | source code lines | source lines hit | percentage hit |
---|
filename | functions hit |
---|---|
CoreVersionRangeFuzzer.java | 20 |
osgi/org.osgi.frameworkorg/osgi/framework/VersionRange.java | 1 |
osgi/org.osgi.test.cases.webcontainerorg/osgi/test/cases/webcontainer/util/validate/VersionRange.java | 11 |
The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview
Call tree overview bitmap:
The distribution of callsites in terms of coloring is
Color | Runtime hitcount | Callsite count | Percentage |
---|---|---|---|
red | 0 | 3 | 20.0% |
gold | [1:9] | 11 | 73.3% |
yellow | [10:29] | 0 | 0.0% |
greenyellow | [30:49] | 0 | 0.0% |
lawngreen | 50+ | 1 | 6.66% |
All colors | 15 | 100 |
The following nodes represent call sites where fuzz blockers occur.
Amount of callsites blocked | Calltree index | Parent function | Callsite | Largest blocked function |
---|---|---|---|---|
3 | 9 | [CoreFilterFuzzer].test() | call site: 00009 | [org.osgi.framework.FilterImpl].createFilter(String) |
Function name | source code lines | source lines hit | percentage hit |
---|
filename | functions hit |
---|---|
CoreFilterFuzzer.java | 11 |
osgi/org.osgi.frameworkorg/osgi/framework/FrameworkUtil.java | 1 |
osgi/org.osgi.frameworkorg/osgi/framework/FilterImpl.java | 2 |
The following table shows a list of functions that are optimal targets. Optimal targets are identified by finding the functions that in combination, yield a high code coverage.
Func name | Functions filename | Arg count | Args | Function depth | hitcount | instr count | bb count | cyclomatic complexity | Reachable functions | Incoming references | total cyclomatic complexity | Unreached complexity |
---|
Implementing fuzzers that target the above functions will improve reachability such that it becomes:
If you implement fuzzers for these functions, the status of all functions in the project will be:
Func name | Functions filename | Args | Function call depth | Reached by Fuzzers | Fuzzers runtime hit | Func lines hit % | I Count | BB Count | Cyclomatic complexity | Functions reached | Reached by functions | Accumulated cyclomatic complexity | Undiscovered complexity |
---|
This sections provides heuristics that can be used as input to a fuzz engine when running a given fuzz target. The current focus is on providing input that is usable by libFuzzer.
Use this with the libFuzzer -dict=DICT.file flag
Use one of these functions as input to libfuzzer with flag: -focus_function name
-focus_function=['[org.osgi.framework.Version].(int,int,int)', '[CoreVersionFuzzer].fuzzerTestOneInput(com.code_intelligence.jazzer.api.FuzzedDataProvider)']
Use this with the libFuzzer -dict=DICT.file flag
Use one of these functions as input to libfuzzer with flag: -focus_function name
-focus_function=['[CoreVersionRangeFuzzer].test()']
Use this with the libFuzzer -dict=DICT.file flag
Use one of these functions as input to libfuzzer with flag: -focus_function name
-focus_function=['[CoreFilterFuzzer].test()']
This section shows analysis of runtime coverage data.
For futher technical details on how this section is generated, please see the Glossary .
Func name | Function total lines | Lines covered at runtime | percentage covered | Reached by fuzzers |
---|---|---|---|---|
[TCKPackaging].analyzeJar(aQute.bnd.osgi.Analyzer) | 55 | 0 | 0.0% | [] |
[TCKPackaging].pack(aQute.bnd.osgi.Analyzer,aQute.bnd.osgi.Jar,aQute.bnd.build.Project,java.util.Collection,java.util.Map) | 83 | 0 | 0.0% | |
[TCKPackaging].replacePaths(aQute.bnd.osgi.Analyzer,aQute.bnd.osgi.Jar,java.util.Map,java.lang.String,boolean) | 33 | 0 | 0.0% | |
[org.osgi.test.cases.promise.junit.PromiseTest].testAllFail1() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.promise.junit.PromiseTest].collector_fail() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].setUp() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testComponentFactory() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationPolicy() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationPolicyFactoryConf() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testActivateDeactivate() | 212 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testEventMethods110() | 79 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testEventMethods130() | 131 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testModified100() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testModified110() | 128 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testModifiedSpecialCases() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testUpdatedReference() | 105 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationPID() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testReferencePolicyOptionStaticReluctant() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testReferencePolicyOptionStaticGreedy() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testReferencePolicyOptionDynamicReluctant() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testReferencePolicyOptionDynamicGreedy() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testScopedServicePrototype130() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testScopedReferencePrototypePrototype130() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testScopedReferencePrototypeRequiredPrototype130() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testServiceComponentRuntimeDescription() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testServiceComponentRuntimeConfiguration() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testMinimumCardinality01130() | 95 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testMinimumCardinality0n130() | 79 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testMinimumCardinality11130() | 71 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testMinimumCardinality1n130() | 98 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testMinimumCardinality110() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testComparableMap130() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationSinglePIDFactory130() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationMultiplePIDs130() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationMultiplePIDsFactory130() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationTargetedPIDRequiredNoModified130() | 100 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationTargetedPIDRequiredModified130() | 88 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationTargetedPIDOptionalNoModified130() | 108 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testConfigurationTargetedPIDOptionalModified130() | 92 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testStaticScalarFieldReference130() | 69 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testStaticScalarFieldReferenceModified130() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testDynamicScalarFieldReferenceModified130() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testDynamicNonVoltaileFieldReference130() | 72 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testFinalFieldReference130() | 72 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testOptionalScalarFieldReference130() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testDynamicScalarFieldReference130() | 175 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testStaticMultipleFieldReference130() | 157 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testStaticMultipleFieldReferenceModified130() | 143 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testUpdateStaticMultipleFieldReference130() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testOptionalStaticMultipleFieldReference130() | 225 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testSortingStaticMultipleFieldReference130() | 142 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testNonInstanceFieldReference130() | 90 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testBadFieldReference130() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testDynamicMultipleFieldReference130() | 214 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testOptionalDynamicMultipleFieldReference130() | 240 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testDynamicMultipleFieldReferenceModified130() | 204 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testSortingDynamicMultipleFieldReference130() | 142 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testComponentServiceObjectsSingleton130() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testComponentServiceObjectsBundle130() | 59 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DeclarativeServicesControl].testComponentServiceObjectsPrototype130() | 64 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testComponentFactoryProperty() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testServiceComponentRuntimeDTOs14() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testConstructorInjection() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testFailedActivation() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testLoggerComponent() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testConfigurationPlugin() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testCoordinationEnded() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.DS14TestCase].testCoordinationFailed() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.ComponentPropertyTypeTestCase].testNameMapping140() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.junit.ComponentPropertyTypeTestCase].testCoercion130() | 242 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc2.tbc.Plugin.LogPlugin.LogPlugin].getMetaNode(java.lang.String[]) | 31 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc2.tbc.Plugin.LogPlugin.LogPlugin].isNodeUri(java.lang.String[]) | 32 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc2.tbc.Plugin.LogPlugin.LogPlugin].getChildNodeNames(java.lang.String[]) | 37 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc2.tbc.Plugin.LogPlugin.LogPlugin].evaluateLogRequest(org.osgi.test.cases.dmt.tc2.tbc.Plugin.LogPlugin.LogPlugin$LogRequest) | 42 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc2.tbc.Plugin.LogPlugin.Splitter].split(java.lang.String,char,int) | 32 | 0 | 0.0% | |
[org.osgi.test.cases.device.tbc.TestBundleControl].testStandaloneDriver() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.device.tbc.TestBundleControl].testDeviceDetection() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.device.tbc.TestBundleControl].testDriverLoading() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testOpenClose() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testOpenClose2() | 86 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testWaitForService() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testRemove() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testFilterWithPropertyChanges() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testServiceTracker01() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testServiceTracker02() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testServiceTracker03() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testModifiedRanking() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.ServiceTrackerTests].testMap() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.BundleTrackerTests].testOpenClose() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.BundleTrackerTests].testOpenClose2() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.BundleTrackerTests].testCustomizerInternal(org.osgi.util.tracker.BundleTracker[],boolean) | 103 | 0 | 0.0% | |
[org.osgi.test.cases.tracker.junit.BundleTrackerTests].testEvents() | 81 | 0 | 0.0% | [] |
[org.osgi.test.cases.tracker.junit.BundleTrackerTests].testModified() | 75 | 0 | 0.0% | [] |
[org.osgi.service.remoteserviceadmin.EndpointDescription].
|
35 | 0 | 0.0% | |
[org.osgi.service.remoteserviceadmin.EndpointPermission].parseActions(java.lang.String) | 33 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc4.rfc141.TestBug1732_MountPluginEventing].checkPostEvent(java.lang.String,boolean) | 35 | 0 | 0.0% | |
[org.osgi.service.event.TopicPermissionCollection].implies(java.security.Permission) | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionTests].testConstructorsBadArguments() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionTests].testEquals() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionTests].testCompareTo() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testConstructorsBadArguments() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testEquals() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testHashCode() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testGetRightType() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testToString() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testIncludes() | 124 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testFilterString() | 137 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testFilterStringBadArguments() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.version.VersionRangeTests].testIntersection() | 114 | 0 | 0.0% | [] |
[org.osgi.service.wireadmin.WirePermissionCollection].implies(java.security.Permission) | 31 | 0 | 0.0% | [] |
[org.osgi.impl.service.networkadapter.TestStepImpl].getAdapterInfo(java.lang.String) | 326 | 0 | 0.0% | |
[org.osgi.impl.service.resourcemonitoring.persistency.PersistenceImpl].load(org.osgi.framework.BundleContext) | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceExceptionTests].testServiceException01() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceExceptionTests].testServiceException02() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceExceptionTests].testServiceException03() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceExceptionTests].testServiceException04() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testSingletonScopeWithTwoConsumers() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testBundleScopeWithTwoConsumers() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testPrototypeScope() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testPrototypeScopeWithTwoConsumers() | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testPrototypeConsumerWithSingletonScope() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testPrototypeConsumerWithBundleScope() | 78 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testPrototypeConsumerWithPrototypeScope() | 130 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testPrototypeConsumerWithPrototypeScopeOneService() | 87 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceScopesTests].testPrototypeScopeCleanup() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceRegistryTests].testServiceListener01() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceRegistryTests].testServiceListener02() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceRegistryTests].testServiceListener03() | 92 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceRegistryTests].testEventSpan() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceRegistryTests].testBasicFactory() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceRegistryTests].testServiceReferenceCompare01() | 51 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.service.ServiceRegistryTests].testUnfilteredServiceListener01() | 95 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZCLDataTypesTestCase].basicDataTypeChecks(org.osgi.service.zigbee.descriptions.ZCLSimpleTypeDescription,short,int,java.lang.Class,boolean,boolean,boolean) | 174 | 0 | 0.0% | |
[org.osgi.test.cases.zigbee.ZCLDataTypesTestCase].checkArrayValues(org.osgi.service.zigbee.descriptions.ZCLSimpleTypeDescription,org.osgi.test.cases.zigbee.ZCLDataTypesTestCase$GenericFrame,java.lang.Object,int[],byte) | 32 | 0 | 0.0% | |
[org.osgi.test.cases.zigbee.ZigBeeExportTestCase].registerInvalidEndpointId(org.osgi.framework.BundleContext,org.osgi.service.zigbee.ZigBeeHost,org.osgi.test.cases.zigbee.config.file.ZigBeeNodeConfig,short) | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZCLClusterTestCases].testWriteAttributes() | 89 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZCLClusterTestCases].testReadAttributes() | 72 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZCLClusterTestCases].testZCLAttribute() | 60 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZCLClusterTestCases].testInvoke() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testZigBeeServices() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testZigBeeHostMethods() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testZigBeeHost(org.osgi.service.zigbee.ZigBeeHost,java.util.Map,org.osgi.test.cases.zigbee.config.file.ZigBeeHostConfig[],org.osgi.framework.ServiceReference) | 137 | 0 | 0.0% | |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testZigBeeNode(org.osgi.service.zigbee.ZigBeeHost,org.osgi.service.zigbee.ZigBeeNode,java.util.Map,org.osgi.test.cases.zigbee.config.file.ZigBeeNodeConfig) | 154 | 0 | 0.0% | |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testZigBeeEndpoint(org.osgi.service.zigbee.ZigBeeNode,org.osgi.service.zigbee.ZigBeeEndpoint,java.util.Map,org.osgi.test.cases.zigbee.config.file.ZigBeeEndpointConfig) | 43 | 0 | 0.0% | |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testRegistrationUnregistrationOrder() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testAServicePidPersistence() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testZigBeeEndpointClusterMethods(org.osgi.service.zigbee.ZigBeeEndpoint,org.osgi.service.zigbee.descriptors.ZigBeeSimpleDescriptor,org.osgi.test.cases.zigbee.config.file.ZigBeeEndpointConfig,boolean) | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZigBeeControlTestCase].testEventing() | 64 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZCLFrameImplTestCase].testDataInput() | 134 | 0 | 0.0% | [] |
[org.osgi.test.cases.zigbee.ZCLFrameImplTestCase].testDataOutput() | 151 | 0 | 0.0% | [] |
[org.osgi.test.cases.bundle.annotations.junit.RequirementAnnotationsTestClass].testAnnotatedRequirement() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.bundle.annotations.junit.CapabilityAnnotationsTestClass].testAnnotatedCapability() | 34 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cd.ssdp.DeviceExporter].makeDeviceDescription(org.osgi.service.upnp.UPnPDevice,java.lang.String,java.lang.String,java.lang.String) | 57 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.ssdp.DeviceExporter].makeActionsDescription(org.osgi.service.upnp.UPnPService[],org.osgi.service.upnp.UPnPAction) | 37 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.ssdp.DeviceExporter].makeStatevarDescription(java.util.Vector) | 57 | 0 | 0.0% | |
[org.osgi.test.cases.upnp.tbc.device.description.DeviceServlet].doGet(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.device.description.DeviceServlet].doSubscribe(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) | 81 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.device.description.DescriptionInvoker].response(java.lang.String,java.lang.String,java.util.Dictionary,boolean,javax.servlet.http.HttpServletResponse) | 35 | 0 | 0.0% | |
[org.osgi.test.cases.upnp.tbc.device.description.DescriptionInvoker].postInSucc(java.lang.String,java.lang.String,java.util.Dictionary,javax.servlet.http.HttpServletResponse) | 33 | 0 | 0.0% | |
[org.osgi.test.cases.upnp.tbc.device.description.DescriptionInvoker].sendOK(java.lang.String,java.lang.String,java.util.Dictionary,javax.servlet.http.HttpServletResponse) | 46 | 0 | 0.0% | |
[org.osgi.test.cases.upnp.tbc.device.description.DescriptionInvoker].sendError(javax.servlet.http.HttpServletResponse,int,java.lang.String) | 53 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc1.tbc.DmtPermission.DmtPermission].testDmtPermission001() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc1.tbc.DmtPermission.DmtPermission].testDmtPermission002() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.jpa.junit.JPAService_1_1_TestCase].testUpdateEMFProperties() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.jpa.junit.JPAService_1_1_TestCase].testClosingEntityManagerFactoryService() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.jpa.junit.JPAService_1_1_TestCase].testReportsCorrectPersistenceProviderDetails() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.jpa.junit.CapabilitiesTestCase].testContractCapability() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.configurator.junit.ConfiguratorTestCase].testForceOverwrite2() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.configurator.junit.ConfiguratorTestCase].testArraysSpecificBoxed() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.log.junit.AbstractLogTestCase].setUp() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.log.junit.AbstractLogTestCase].logToLogger(org.osgi.service.log.Logger,org.osgi.service.log.LogLevel,java.lang.String,java.util.List) | 61 | 0 | 0.0% | |
[org.osgi.test.cases.log.junit.AbstractLogTestCase].assertLog(boolean,java.util.Collection,java.lang.String,org.osgi.framework.Bundle,int,java.lang.String,java.lang.Throwable,org.osgi.framework.ServiceReference,long,java.lang.String,java.lang.StackTraceElement) | 34 | 0 | 0.0% | |
[org.osgi.test.cases.log.junit.LogServiceTestCase].testLogServiceLogger() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.log.junit.LogServiceTestCase].testMultipleListeners() | 31 | 0 | 0.0% | [] |
[org.osgi.impl.service.device.manager.Activator].serviceChanged(org.osgi.framework.ServiceEvent) | 53 | 0 | 0.0% | [] |
[org.osgi.impl.service.device.manager.Activator].handleDevice(org.osgi.framework.ServiceReference) | 93 | 0 | 0.0% | |
[org.osgi.impl.service.enocean.utils.teststep.TestStepForEnOceanImpl].execute(java.lang.String,java.lang.String) | 35 | 0 | 0.0% | |
[org.osgi.test.cases.framework.secure.junit.permissions.CapabilityPermissionTests].testCapabilityPermission() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.secure.junit.permissions.FilteredTestControl].testServiceGet2_06_1() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.secure.junit.permissions.FilteredTestControl].testExportPackage7_5_4() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.secure.junit.permissions.FilteredTestControl].testExportPackage7_5_5() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.transaction.control.jpa.control.TransactionTxControl].finish(boolean) | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.secure.tb.exporter.Activator].test() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.jndi.tests.TestServiceIntegration].testMultipleServiceLookupWithRebinding() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminUpdateTest].testExportImportManually() | 70 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointDescriptionTests].testFromMap() | 89 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointDescriptionTests].testBadMap() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointDescriptionTests].testFromReference() | 102 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointDescriptionTests].testIntents() | 97 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointDescriptionTests].testConfigurationsTypes() | 89 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointDescriptionTests].testMatches() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminExportTest].testExportRSAListenerNotification() | 75 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminExportTest].testExportEventNotification() | 64 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminExportTest].testExportMultipleRegistrations() | 95 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminExportTest].testExportConfigurationType() | 83 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminExportTest].testForceExportFailure() | 91 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminExportTest].testExportConfigOverride() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminExportTest].testExportEmptyConfig() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.DiscoveryTest].testDiscovery122_6() | 59 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.DiscoveryTest].testDiscovery122_6_8() | 63 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.DiscoveryTest].testDiscoveryBasicEndpointEvents_122_6_3() | 61 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointPermissionTests].testActions() | 196 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointPermissionTests].testFiltersName() | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointPermissionTests].testFiltersProperties() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.EndpointPermissionTests].testPermissionCollection() | 98 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminTest].testExportImportManually() | 161 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.junit.RemoteServiceAdminTest].testExportImportManuallyMultipleVersions() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.transaction.SimpleTransactionManagerTest].testTransactionManager2() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.transaction.SimpleTransactionManagerTest].testTransactionManager6() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.MainTests].testPermissionInfo() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].setUp() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testPermission() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermission() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdaptPermission() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionMetadata() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionResource() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionClass() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionLifecycle() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionExtensionLifecycle() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionExecute() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionListener() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionResolve() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.permissionadmin.junit.PermissionSignatureTestControl].testAdminPermissionStartlevel() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.TestWireAdminListener].wireAdminEvent(org.osgi.service.wireadmin.WireAdminEvent) | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testCreateWire() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testDeleteWire() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testIncorrectCreateWire() | 52 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testIncorrectUpdateWire() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testRegisterUnregisterConsumerProducer() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testUpdateAfterUnregister() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testRestartWireadmin() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testMultipleRegistration() | 59 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testPollUpdate() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testValueFilteringCurrentPrevious() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testValueFilteringDeltaAbsolute() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testValueFilteringDeltaRelative() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testValueFilteringElapsed() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testValueFilteringDisabled() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.wireadmin.junit.WireAdminControl].testEvents() | 103 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.filter.AbstractFilterTests].getProperties() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.filter.AbstractFilterTests].testCaseInsensitive() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.filter.AbstractFilterTests].testCaseSensitive() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.filter.AbstractFilterTests].testComparable() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.filter.AbstractFilterTests].testVersion() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.filter.AbstractFilterTests].testComparableValueOf() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.felix.ConverterTest].testSimpleConversions() | 82 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.felix.ConverterTest].testDTO2Map3() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.felix.ConverterTest].testDTOWithGenerics() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.felix.ConverterTest].testMapToDTOWithGenerics() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.felix.ConverterTest].testCollectionInterfaceMapping() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.felix.ConverterTest].testMapToInterfaceWithOptional() | 62 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.felix.ConverterCollectionsTest].testLiveStringArray() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.device.discovery.DiscoveryMsgCreator].createAlive(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int) | 34 | 0 | 0.0% | |
[org.osgi.test.cases.enocean.ExportTestCase].testDeviceExport() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.enocean.EnOceanBasicTestCase].testInterfaceExceptions() | 73 | 0 | 0.0% | [] |
[org.osgi.test.cases.enocean.EnOceanBasicTestCase].testUseOfDescriptions() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.transaction.control.jpa.CommonJPAProviderFactoryTestCase].testProviderRelease() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.transaction.control.jpa.EntityManagerFactoryJPAProviderFactoryTestCase].createProvider(int) | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.prefs.junit.PrefsControl].runRemovedTests(org.osgi.service.prefs.Preferences,java.lang.String) | 41 | 0 | 0.0% | |
[org.osgi.test.cases.prefs.junit.PrefsControl].testGetMethods(org.osgi.service.prefs.Preferences) | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.prefs.junit.PrefsControl].testPutMethods(org.osgi.service.prefs.Preferences) | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.prefs.junit.PrefsControl].testPropValues(org.osgi.service.prefs.Preferences) | 92 | 0 | 0.0% | [] |
[org.osgi.impl.service.useradmin.UserAdminImpl].load() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.onem2m.junit.ServiceLayerTestCase].testRetrieve1() | 52 | 0 | 0.0% | [] |
[org.osgi.test.cases.onem2m.junit.ServiceLayerTestCase].testUpdate1() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.onem2m.junit.ServiceLayerTestCase].testDiscovery1() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.onem2m.junit.ServiceLayerTestCase].testNotify3byUpdate() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.launch.junit.ConnectTests].lambda$doTestConnectContentEntries$9(java.util.List,java.util.Map,boolean,org.osgi.framework.launch.Framework) | 58 | 0 | 0.0% | |
[org.osgi.test.cases.framework.launch.junit.FrameworkLaunchTests].testStorageArea() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.launch.junit.MultiReleaseJarTestCase].createMRJarBundle() | 268 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.launch.junit.ExtensionDependencyTests].testNormalBundleRequireCapabilityFromExtension() | 37 | 0 | 0.0% | [] |
[org.osgi.impl.service.enocean.basedriver.radio.MessageSYS_EX].
|
33 | 0 | 0.0% | |
[org.osgi.test.cases.cm.targetb1.Target1Activator].start(org.osgi.framework.BundleContext) | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testServiceRegistryWithMultipleServices001() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testServiceListener001() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testAllServiceListener001() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testUnfilteredAllServiceListener001() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testPackageExport002() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testPackageExport003() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testPackageExport004() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.classloading.ClassLoadingTests].testRequiredBundle008() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.FrameworkWiringTests].testRemovalPending() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.FrameworkWiringTests].testFindResources() | 51 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].testGetRevision() | 150 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].testGetWiring() | 125 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].checkBundleWires(org.osgi.framework.wiring.BundleWiring,org.osgi.framework.wiring.BundleWiring,org.osgi.framework.wiring.BundleWiring,org.osgi.framework.wiring.BundleWiring,org.osgi.framework.wiring.BundleWiring,org.osgi.framework.Bundle,java.util.List,java.util.List,java.util.List,java.util.List,java.util.List,java.util.List,java.util.List,java.util.List) | 91 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].testGetRevisions() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].checkWirings(org.osgi.framework.Bundle[][],org.osgi.framework.wiring.BundleRevisions,int,boolean) | 44 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].testListResources() | 125 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].testBSNMatchingAttributes() | 66 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].testProvidedWiresOrdering() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.wiring.BundleWiringTests].testDynamicImportPackage() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.ConfigurationPermissionTests].testActions() | 125 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.ConfigurationPermissionTests].testNames() | 67 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.ConfigurationPermissionTests].testWildcardNames() | 64 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMCoordinationTestCase].testListeners() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMCoordinationTestCase].testManagedService() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testGetConfiguration() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testGetConfigurationWithLocation() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testConfigurationWithNullLocation() | 90 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testChangeCount() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testChangeCountFactory() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testSyncListener() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testSyncListenerFactory() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testTargetedPid() | 95 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testTargetedFactoryPid() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testNegativeTargetedPid() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testDynamicBinding() | 404 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testUpdate() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testUpdateIfDifferent() | 62 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testListConfigurations() | 62 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistration() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistration2() | 268 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].internalTestRegisterManagedServiceWithMultiplePIDs() | 79 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistrationDuplicatedTargets() | 221 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedProperties() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testGetFactoryConfigurationWithName() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].commonTestCreateFactoryConfiguration(boolean,java.lang.String) | 56 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].testFactoryConfigurationCollision() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactory() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testUpdateConfigFactoryEvent() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testDeleteConfigEvent() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testConfigEventFromDifferentBundle() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].internalGetConfigurationWithLocation_2_02To08(int,java.lang.String) | 145 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].internalGetConfigurationWithLocation_2_09To13(int,java.lang.String) | 73 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].internalGetConfiguration_3_01To07(int,java.lang.String) | 181 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].internalCreateFactoryConfigurationWithLocation_4_01To07(int,java.lang.String) | 82 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].internalListConfigurations(int,java.lang.String) | 35 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].internalGetBundleLocation_7_01to08(int,java.lang.String) | 62 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].internalSetBundleLocation_8_01to07(int,java.lang.String,java.lang.String) | 35 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].testSetBundleLocation_8_08() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testSetBundleLocation_8_10() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testSetBundleLocation_8_16() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testSetBundleLocation_8_17() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testSetBundleLocation_8_19() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistration9_1_1() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistration9_1_2() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].internalManagedServiceRegistration9_2_1to2(int,java.lang.String,java.lang.String,org.osgi.framework.Bundle,org.osgi.framework.Bundle) | 38 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].internalManagedServiceRegistration9_2_4to5(int,java.lang.String,java.lang.String,org.osgi.framework.Bundle,org.osgi.framework.Bundle) | 31 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistrationMultipleTargets_10_1_1() | 103 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistrationMultipleTargets_10_1_2() | 96 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].internalTestManagedServiceRegistrationMultipleTargets_10_2_1to3() | 69 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistrationMultipleTargets_10_2_4() | 74 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceRegistrationMultipleTargets_11_1_1() | 77 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceChangeLocation_12_1_1() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceChangeLocation_12_1_2() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceChangeLocation_12_1_3() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceChangeCP_12_2_1() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceChangeCP_12_2_2() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceStartCM_12_3_2() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceStartCM_12_3_3() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceModifyPid_12_4_1() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceModifyPid_12_4_2() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].checkMsf_FirstRegThenCreateConf(org.osgi.framework.Bundle,java.lang.String,java.util.List,java.lang.String,boolean) | 53 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistration13_1_2() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistration13_2_5() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleTargets_14_1_1() | 70 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleTargets_14_1_2() | 67 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleTargets_14_2_1() | 66 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleTargets_14_2_2() | 63 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleTargets_15_1_1() | 84 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleTargets_15_1_2() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleTargets_15_3_1() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleCF_16_1_1() | 77 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryRegistrationMultipleCF_16_1_2() | 79 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryCmRestart18_3_2() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryModifyPid18_4_2() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testManagedServiceFactoryDeletion18_5_2() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].testConfigurationLocking() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.CMControl].
|
37 | 0 | 0.0% | |
[org.osgi.test.cases.cm.junit.ConfigurationPluginTests].testRankingForManagedService() | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.ConfigurationPluginTests].testRankingForManagedServiceFactory() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.junit.ConfigurationPluginTests].verifyPlugins(java.util.Dictionary,boolean,java.util.List,java.util.List,org.osgi.test.cases.cm.junit.ConfigurationPluginTests$PluginContext) | 32 | 0 | 0.0% | |
[org.osgi.test.cases.remoteserviceadmin.secure.tb.importer.Activator].test() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.cm.bundleT4.BundleT4Activator].registerService(org.osgi.framework.BundleContext[],java.lang.String,java.lang.Class,java.lang.String) | 33 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.basedriver.UPnPServiceImpl].
|
37 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.basedriver.UPnPActionImpl].
|
31 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.basedriver.UPnPBaseDriver].addDevice(java.lang.String,org.osgi.impl.service.upnp.cp.description.RootDevice) | 36 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.basedriver.UPnPBaseDriver].getDeviceProps(java.util.Dictionary,org.osgi.impl.service.upnp.cp.description.RootDevice) | 32 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc1.tbc.DmtException.DmtException].testDmtException009() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc1.tbc.DmtException.DmtException].testDmtException011() | 32 | 0 | 0.0% | [] |
[org.osgi.impl.service.rest.resources.AbstractOSGiResource].getBundles() | 34 | 0 | 0.0% | [] |
[org.osgi.test.support.compatibility.DefaultTestBundleControl].objectEquals(java.util.Comparator,java.lang.Object,java.lang.Object) | 39 | 0 | 0.0% | |
[org.osgi.service.dmt.Acl].split(java.lang.String,char,int) | 32 | 0 | 0.0% | |
[org.osgi.service.dmt.DmtData].validate() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.LogContentTestCase].testLogEntries() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FrameworkOperationsTestCase].testBundleStateChanges() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.RMTTestBase].tearDown() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FrameworkContentTestCase].testBundleSigners() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FrameworkContentTestCase].testFrameworkBundleEntries() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FrameworkContentTestCase].matchWireTree(org.osgi.service.dmt.DmtSession,java.lang.String,java.lang.String,java.util.List) | 50 | 0 | 0.0% | |
[org.osgi.test.cases.residentialmanagement.FrameworkContentTestCase].matchServiceWire(org.osgi.service.dmt.DmtSession,java.lang.String,java.util.List) | 50 | 0 | 0.0% | |
[org.osgi.test.cases.residentialmanagement.FilterOperationsTestCase].testInvalidFilters() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FilterOperationsTestCase].testResultsAreReadOnly() | 66 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FilterOperationsTestCase].testVisibilityBySession() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FilterOperationsTestCase].testVisibilityByACL() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FilterOperationsTestCase].testFilterAgainstListNodes() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FrameworkStructureTestCase].testBundleStructure() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FrameworkStructureTestCase].testBundleWiresStructure() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.residentialmanagement.FrameworkStructureTestCase].testMetaDataAndType() | 97 | 0 | 0.0% | [] |
[org.osgi.test.cases.typedevent.junit.TypedEventMonitorIntegrationTest].testTypedEventMonitor_History_by_Instant() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.typedevent.junit.TopicPermissionTests].testActions() | 77 | 0 | 0.0% | [] |
[org.osgi.test.cases.typedevent.junit.TopicPermissionTests].testNames() | 64 | 0 | 0.0% | [] |
[org.osgi.impl.service.jdbc.DerbyEmbeddedDataSourceFactory].toBasicType(java.lang.String,java.lang.String) | 58 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.permissions.AdaptPermissionTests].testActions() | 51 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.AdaptPermissionTests].testWildcard() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.AdaptPermissionTests].testFiltersName() | 63 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.AdaptPermissionTests].testFiltersBundle() | 61 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.AdaptPermissionTests].testPermissionCollection() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.CapabilityPermissionTests].testInvalid() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.CapabilityPermissionTests].testActions() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.CapabilityPermissionTests].testNames() | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.CapabilityPermissionTests].testFiltersName() | 99 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.CapabilityPermissionTests].testFiltersAttributesBundle() | 80 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.CapabilityPermissionTests].testPermissionCollection() | 136 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.BundlePermissionTests].testActions() | 99 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.BundlePermissionTests].testNames() | 99 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.ServicePermissionTests].testActions() | 80 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.ServicePermissionTests].testNames() | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.ServicePermissionTests].testFiltersName() | 99 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.ServicePermissionTests].testFiltersServiceReference() | 69 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.ServicePermissionTests].testPermissionCollection() | 142 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.AdminPermissionTests].testDefault() | 59 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.AdminPermissionTests].testFilter() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.AdminPermissionTests].testActionImplications() | 167 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.PackagePermissionTests].testInvalid() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.PackagePermissionTests].testActions() | 128 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.PackagePermissionTests].testNames() | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.PackagePermissionTests].testFiltersName() | 99 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.PackagePermissionTests].testFiltersBundle() | 61 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.permissions.PackagePermissionTests].testPermissionCollection() | 134 | 0 | 0.0% | [] |
[org.osgi.service.coordinator.CoordinationPermission].parseActions(java.lang.String) | 33 | 0 | 0.0% | |
[org.osgi.test.cases.rest.client.js.junit.RestTestUtils].
|
41 | 0 | 0.0% | |
[org.osgi.test.cases.rest.client.js.junit.RestJSClientTestCase].testBundleListRestClient() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.client.js.junit.RestJSClientTestCase].testBundleStateRestClient() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadOnlySession].getChildNodeNames(java.lang.String[]) | 48 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadOnlySession].getMetaNode(java.lang.String[]) | 36 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadOnlySession].isNodeUri(java.lang.String[]) | 46 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadOnlySession].getNodeValue(java.lang.String[]) | 38 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.Value].setType(org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.Type) | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadWriteSession].commit() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadWriteSession].createLeafNode(java.lang.String[],org.osgi.service.dmt.DmtData,java.lang.String) | 68 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadWriteSession].getChildNodeNames(java.lang.String[]) | 43 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadWriteSession].getNodeValue(java.lang.String[]) | 53 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.ConfigurationPlugin.ConfigReadWriteSession].isNodeUri(java.lang.String[]) | 45 | 0 | 0.0% | |
[org.osgi.test.cases.condpermadmin.junit.ConditionalTestControl].testNamedConditionalPermissionAdmin() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.condpermadmin.junit.ConditionalTestControl].testMoreConditions() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.condpermadmin.junit.ConditionalTestControl].testMultipleBundlesOnStack() | 67 | 0 | 0.0% | [] |
[org.osgi.test.cases.condpermadmin.junit.ConditionalTestControl].testRecursionInChecks() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.condpermadmin.junit.ConditionalTestControl].testMutable2Immutable() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.webcontainer.junit.ServletContextRegistrationTest].registerWarBundleTest(java.util.Map,java.lang.String,boolean,org.osgi.framework.Bundle) | 71 | 0 | 0.0% | |
[org.osgi.test.cases.webcontainer.junit.BundleSymbolicNameTest].testBundleSymbolicNameError001() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.webcontainer.junit.EventTest].testEvent001() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.webcontainer.junit.EventTest].testEvent002() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.event.junit.EventAdminTests].testPostEvent() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.event.junit.EventAdminTests].testPostEventUnordered() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.event.junit.EventAdminTests].testMultiThreads(int,java.lang.String) | 56 | 0 | 0.0% | |
[org.osgi.test.cases.event.junit.EventTests].testProperties() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.event.junit.EventTests].testEventProperties() | 109 | 0 | 0.0% | [] |
[org.osgi.test.cases.event.junit.TopicPermissionTests].testActions() | 77 | 0 | 0.0% | [] |
[org.osgi.test.cases.event.junit.TopicPermissionTests].testNames() | 64 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.ServletTestCase].test_table_140_4_HTTP_WHITEBOARD_SERVLET_ASYNC_SUPPORTED_validate() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.ServletTestCase].test_table_140_4_HTTP_WHITEBOARD_SERVLET_ERROR_PAGE_validate() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.ServletTestCase].test_table_140_4_HTTP_WHITEBOARD_SERVLET_ERROR_PAGE_4xx() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.ResourceTestCase].test_table_140_6_HTTP_WHITEBOARD_RESOURCE_validation() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.FilterTestCase].test_table_140_5_HTTP_WHITEBOARD_FILTER_DISPATCHER_multiple() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.FilterTestCase].test_table_140_5_HTTP_WHITEBOARD_FILTER_PATTERN() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.FilterTestCase].test_table_140_5_HTTP_WHITEBOARD_FILTER_REGEX() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.FilterTestCase].test_140_5_7to10() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.ServletContextHelperTestCase].test_140_2_6_attributes() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.ServletContextHelperTestCase].test_140_2_6_getSessionCookieConfig() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.HttpServiceRuntimeTestCase].test_140_11_2() | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.junit.PreprocessorTestCase].testPreprocessorRanging() | 34 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.util.Converter].java2upnp(java.util.Dictionary,java.util.Hashtable) | 67 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.util.Converter].upnp2java(java.util.Dictionary,java.util.Hashtable) | 56 | 0 | 0.0% | |
[org.osgi.service.condpermadmin.ConditionInfo].
|
47 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.event.Processor].processRequest() | 36 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cd.event.SubscriptionCheck].subscribe() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.frameworkutil.MatchDNChainTests].testMatch() | 61 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].setUp() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].testInitialBundleStartLevel() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].testStartOrder() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].testSetStartLevel() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].testSetBundleStartLevel() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].testPersistentlyStarted() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].testExceptionInActivator() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.startlevel.StartLevelControl].testActivatorChangeStartLevel() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.dal.functions.data.KeypadDataTest].testHashCode() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.dal.functions.data.KeypadDataTest].testInvalidFields() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.transaction.control.jdbc.control.TransactionTxControl].finish(boolean) | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].testRemountToUnmounedPlugin() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].testRemount2MountPoints1MatchedPlugin0UnmachedPlugin() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].test3PluginsRegisterUnregisterOrderPattern01() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].test3PluginsRegisterUnregisterOrderPattern02() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].test3PluginsRegisterUnregisterOrderPattern03() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].test3PluginsRegisterUnregisterOrderPattern04() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].test3PluginsRegisterUnregisterOrderPattern05() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].test3PluginsRegisterUnregisterOrderPattern06() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ExecMountPluginTest].testModified2MountPoints1MatchedPlugin0UnmachedPlugin() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].test2MountPluginsCallbackPattern01() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].test2MountPluginsCallbackPattern03() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].test3MountPluginsCallbackPattern05() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].test3MountPluginsCallbackPattern06() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].testMountPluginCallbackPatten08() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].testMountPluginCallbackPattern10() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].testMountPluginCallbackPattern11() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].testMountPluginCallbackPattern12() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].testMountPluginCallbackPattern13() | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataPluginMountPointTest].testMountPluginCallbackPattern14() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.DataMountPluginTest].testMountAlgorithmPattern01() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ScaffoldNodeTest].testScaffoldNodeData() | 60 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ScaffoldNodeTest].testScaffoldNodePattern03() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ScaffoldNodeTest].testWriteCommandToScaffoldNodeIsNotAllowedOnExclusiveLockType() | 71 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ScaffoldNodeTest].testWriteCommandToScaffoldNodeIsNotAllowedOnAtomicLockType() | 71 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.ScaffoldNodeTest].testScaffoldNodeFromParentPluginToChildPlugin() | 61 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testMultiMountPoints() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testPostAddedEventWithOptionalProperties() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testPostDeletedEventWithOptionalProperties() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testPostReplacedEventWithOptionalProperties() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testPostRenamedEventWithOptionalProperties() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testPostCopiedEventWithOptionalProperties() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testPostEventWithNodesOverlappedProperties() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.InternalChangedEventTest].testPostEventWithNodesNewNodesAndOverlappedProperties() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.SharedMountPointTest].testRemountEnumeratedPlugins01() | 48 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.SharedMountPointTest].testRemountEnumeratedPlugins02() | 48 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.SharedMountPointTest].testMountKnownEnumeratedPlugins() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc4.ext.junit.SharedMountPointTest].testGetMetaNodeNotMountSharedPlugins() | 58 | 0 | 0.0% | [] |
[org.osgi.impl.service.tr069todmt.TR069ConnectorImpl].convertToDmtData(java.lang.String,java.lang.String,int,org.osgi.service.dmt.MetaNode) | 53 | 0 | 0.0% | |
[org.osgi.impl.service.tr069todmt.TR069ConnectorImpl].getFormats(int,int) | 38 | 0 | 0.0% | [] |
[org.osgi.impl.service.tr069todmt.TR069ConnectorImpl].convert(java.lang.String,int) | 48 | 0 | 0.0% | |
[org.osgi.impl.service.tr069todmt.TR069ConnectorImpl].addObject(java.lang.String) | 34 | 0 | 0.0% | |
[org.osgi.impl.service.tr069todmt.TR069ConnectorImpl].toUri(java.lang.String,boolean,java.lang.StringBuffer) | 39 | 0 | 0.0% | |
[org.osgi.impl.service.tr069todmt.Utils].getDmtValueAsString(org.osgi.impl.service.tr069todmt.Node) | 39 | 0 | 0.0% | |
[org.osgi.impl.service.tr069todmt.Utils].encode(java.lang.Object,int) | 49 | 0 | 0.0% | |
[org.osgi.impl.service.tr069todmt.PersistenceManager].createInteriorNode(org.osgi.service.dmt.DmtSession,java.lang.String,int,boolean) | 52 | 0 | 0.0% | |
[org.osgi.impl.service.tr069todmt.PersistenceManager].getAliasedUri(org.osgi.service.dmt.DmtSession,java.lang.String) | 34 | 0 | 0.0% | |
[org.osgi.impl.service.rest.PojoReflector].toXml(java.lang.Object,java.lang.String,org.w3c.dom.Document) | 31 | 0 | 0.0% | |
[org.osgi.test.cases.framework.secure.weaving.tb.weaver.TestWeavingHook].weave(org.osgi.framework.hooks.weaving.WovenClass) | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.UPnPControl].testDiscovery() | 65 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.UPnPControl].testControl() | 103 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.UPnPControl].testExport() | 96 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.UPnPControl].testRemovedExport() | 73 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.UPnPControl].parseSCPD_XML(java.lang.String) | 51 | 0 | 0.0% | |
[org.osgi.test.cases.upnp.tbc.ControlPoint].createPOST(java.lang.String,java.lang.String,int,java.lang.String,java.lang.String[],java.lang.String[],java.lang.String) | 48 | 0 | 0.0% | |
[org.osgi.test.cases.upnp.tbc.ControlPoint].createMPOST(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String[],java.lang.String[],java.lang.String) | 52 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.LogReadOnlySession].getChildNodeNames(java.lang.String[]) | 33 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.LogReadOnlySession].isNodeUri(java.lang.String[]) | 33 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadWriteSession].
|
36 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadWriteSession].commit() | 296 | 0 | 0.0% | [] |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadWriteSession].restore() | 73 | 0 | 0.0% | [] |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].getChildNodeNames(java.lang.String[]) | 188 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].getMetaNode(java.lang.String[]) | 124 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].getNodeType(java.lang.String[]) | 41 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].isNodeUri(java.lang.String[]) | 152 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].isLeafNode(java.lang.String[]) | 45 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].getNodeValue(java.lang.String[]) | 174 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].managedWires(org.osgi.framework.Bundle) | 34 | 0 | 0.0% | [] |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession].createServiceWiresSubtree(org.osgi.framework.Bundle) | 38 | 0 | 0.0% | [] |
[org.osgi.impl.service.residentialmanagement.plugins.FiltersReadOnlySession].getChildNodeNames(java.lang.String[]) | 45 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FiltersReadOnlySession].getMetaNode(java.lang.String[]) | 31 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FiltersReadOnlySession].getNodeValue(java.lang.String[]) | 35 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FiltersReadOnlySession].isNodeUri(java.lang.String[]) | 31 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FiltersReadOnlySession$Filters].processTarget() | 39 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FiltersReadOnlySession$Filters].tProcess(java.util.Vector) | 76 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FiltersReadOnlySession$Filters].checkFilter(java.lang.String,java.lang.String) | 83 | 0 | 0.0% | |
[org.osgi.impl.service.residentialmanagement.plugins.FrameworkReadOnlySession$BundleSubTree].
|
39 | 0 | 0.0% | |
[org.osgi.test.cases.clusterinfo.junit.ClusterInfoTestCase].testFrameworkManager() | 62 | 0 | 0.0% | [] |
[org.osgi.test.cases.clusterinfo.junit.ClusterTagPermissionTestCase].testPermissions() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc3.tbc.LogPlugin.LogPlugin].getMetaNode(java.lang.String[]) | 31 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.LogPlugin.LogPlugin].isNodeUri(java.lang.String[]) | 32 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.LogPlugin.LogPlugin].getChildNodeNames(java.lang.String[]) | 37 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.LogPlugin.LogPlugin].evaluateLogRequest(org.osgi.test.cases.dmt.tc3.tbc.LogPlugin.LogPlugin$LogRequest) | 42 | 0 | 0.0% | |
[org.osgi.test.cases.dmt.tc3.tbc.LogPlugin.Splitter].split(java.lang.String,char,int) | 32 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.syncbundlelistener.SyncBundleListenerTests].testListenerOrdering() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.serial.junit.SerialDeviceTestCase].testSerialDevice02() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.serial.junit.SerialDeviceTestCase].testSerialDevice05() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DS14AnnotationsTestCase].testLoggerComponent() | 53 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DS14AnnotationsTestCase].testPropertyOrdering14() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DS14AnnotationsTestCase].testConstructorInjection() | 238 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DSAnnotationsTestCase].testComponentReferences() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DSAnnotationsTestCase].testReferences() | 109 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DSAnnotationsTestCase].testFieldReferences() | 282 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DSAnnotationsTestCase].testReferenceScopes() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.DSAnnotationsTestCase].testPropertyOrdering() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.component.annotations.junit.AnnotationsTestCase].loadComponentDescriptions() | 58 | 0 | 0.0% | [] |
[org.osgi.impl.service.zigbee.basedriver.ZigBeeNodeImpl].activate(org.osgi.framework.BundleContext) | 43 | 0 | 0.0% | [] |
[org.osgi.impl.service.zigbee.basedriver.ZCLClusterImpl].readAttributes(org.osgi.service.zigbee.ZCLAttributeInfo[]) | 37 | 0 | 0.0% | |
[org.osgi.impl.service.zigbee.basedriver.ZCLClusterImpl].writeAttributes(boolean,java.util.Map) | 33 | 0 | 0.0% | |
[org.osgi.service.useradmin.UserAdminPermissionCollection].implies(java.security.Permission) | 31 | 0 | 0.0% | [] |
[org.osgi.service.useradmin.UserAdminPermission].parseActions(java.lang.String) | 33 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.weaving.WeavingHookTests].testMultipleWeaversWithRankings() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.weaving.WeavingHookTests].testExceptionCausesDenyListing() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.weaving.WeavingHookTests].testWeavingExceptionDoesNotCauseDenyListing() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.weaving.WeavingHookTests].testDenyListingOnlyAppliesToRegistration() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.weaving.WeavingHookTests].assertImmutableList(org.osgi.framework.hooks.weaving.WovenClass) | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteservices.junit.SimpleTest].testSimpleRegistration() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteservices.junit.SimpleTest].testBasicTypes() | 207 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteservices.junit.SimpleTest].testBasicTimeout() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteservices.junit.SimpleTest].testAsyncTypes() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteservices.junit.SimpleTest].testAsyncJava8Types() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.pushstream.junit.PushStreamComplianceTest$ExtGeneratorStatus].toString() | 32 | 0 | 0.0% | |
[org.osgi.test.cases.pushstream.junit.PushStreamIntermediateOperationTest].testTestingTools() | 48 | 0 | 0.0% | [] |
[org.osgi.test.cases.pushstream.junit.PushEventStreamToPushEventSourceTest].testPushStreamToSourceDoesNotAutoClose() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.pushstream.junit.PushEventStreamToPushEventSourceTest].testPushStreamToSourceMultiplexing() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.pushstream.junit.PushStreamComplianceTest$ExtGenerator$1].run() | 35 | 0 | 0.0% | |
[org.osgi.test.cases.webcontainer.util.WebContainerTestBundleControl].generateQuery(java.util.Map) | 55 | 0 | 0.0% | |
[org.osgi.test.cases.resourcemonitoring.TC4_ResourceMonitorTestCase].setUp() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.resourcemonitoring.TC2_ResourceContextDeletionRelatedTestCases].testDeletionOfAResourceContextWithADestinationResourceContext() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.resourcemonitoring.TC2_ResourceContextDeletionRelatedTestCases].testDeletionOfAResourceContextWithAPreviouslyDeletedResourceContextAsDestination() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.export.UPnPExportedDevice].newUPnPTestervice() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.serviceloader.junit.ServiceLoaderTest].testAutoRegister() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.serviceloader.junit.ServiceLoaderTest].testServiceFactory() | 34 | 0 | 0.0% | [] |
[org.osgi.impl.service.enocean.basedriver.EnOceanBaseDriver].radioPacketReceived(byte[]) | 39 | 0 | 0.0% | [] |
[org.osgi.util.pushstream.PushStreamProvider$MultiplexingConsumer].accept(org.osgi.util.pushstream.PushEvent) | 31 | 0 | 0.0% | |
[org.osgi.util.pushstream.AbstractPushStreamImpl].lambda$window$39(org.osgi.util.pushstream.AbstractPushStreamImpl,java.lang.Object,java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicBoolean,java.util.concurrent.atomic.AtomicLong,java.util.concurrent.atomic.AtomicLong,java.util.function.BiFunction,java.util.concurrent.Executor,java.util.function.IntSupplier,java.util.function.Supplier,java.util.concurrent.atomic.AtomicLong,org.osgi.util.pushstream.PushEvent) | 42 | 0 | 0.0% | |
[org.osgi.util.pushstream.SimplePushEventSourceImpl].lambda$startWorker$6() | 44 | 0 | 0.0% | |
[org.osgi.impl.service.zigbee.basedriver.configuration.ZigBeeProfiles$Parser].startElement(java.lang.String,java.lang.String,java.lang.String,org.xml.sax.Attributes) | 40 | 0 | 0.0% | |
[org.osgi.impl.service.zigbee.basedriver.configuration.ZigBeeProfiles$Parser].endElement(java.lang.String,java.lang.String,java.lang.String) | 34 | 0 | 0.0% | |
[org.osgi.test.cases.component.tb27.impl.ConstructorInjection].
|
34 | 0 | 0.0% | |
[org.osgi.service.zigbee.types.ZigBeeDefaultSerializer].serializeDataType(org.osgi.service.zigbee.ZigBeeDataOutput,short,java.lang.Object) | 184 | 0 | 0.0% | |
[org.osgi.service.zigbee.types.ZigBeeDefaultSerializer].deserializeDataType(org.osgi.service.zigbee.ZigBeeDataInput,short) | 148 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc2.tbc.Activators.EventHandlerImpl].handleEvent(org.osgi.service.event.Event) | 68 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.lifecycle.TestBundleControl].testStartStopWithException() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.lifecycle.TestBundleControl].testEvents() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.device.event.EventSender].run() | 91 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.device.event.EventSender].genEvent(java.util.Dictionary) | 71 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.activationpolicy.TestControl].testActivationPolicy04() | 81 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.activationpolicy.TestControl].testActivationPolicy05() | 83 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.activationpolicy.TestControl].testStartTransient01() | 80 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.activationpolicy.TestControl].testStopTransient01() | 80 | 0 | 0.0% | [] |
[org.osgi.impl.service.enocean.basedriver.impl.EnOceanHostTestImpl].run() | 36 | 0 | 0.0% | [] |
[org.osgi.impl.service.enocean.basedriver.impl.EnOceanHostTestImpl].readPacket(byte[]) | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.junit.RestTestUtils].
|
52 | 0 | 0.0% | |
[org.osgi.test.cases.rest.junit.RestServiceXMLTestCase].testBundleState() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.junit.RestServiceXMLTestCase].assertService(org.w3c.dom.Element,org.osgi.framework.ServiceReference) | 73 | 0 | 0.0% | |
[org.osgi.test.cases.rest.junit.RestServiceXMLTestCase].executeRequest(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.util.Map,java.lang.Object) | 39 | 0 | 0.0% | |
[org.osgi.test.cases.rest.junit.RestServiceJSONTestCase].testBundleList() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.junit.RestServiceJSONTestCase].testBundle() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.junit.RestServiceJSONTestCase].testBundleState() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.junit.RestServiceJSONTestCase].assertService(org.json.JSONObject,org.osgi.framework.ServiceReference) | 41 | 0 | 0.0% | |
[org.osgi.test.cases.rest.junit.RestServiceJSONTestCase].executeRequest(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.util.Map,java.lang.Object) | 50 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.div.DivTests].testManifestHeaders() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.div.DivTests].assertNativeNamespace(org.osgi.framework.Bundle,boolean,boolean) | 50 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.div.DivTests].doTestBundleGetResources(boolean) | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.div.DivTests].
|
58 | 0 | 0.0% | |
[org.osgi.test.cases.metatype.annotations.junit.AnnotationsTestCase].loadMetatypeResources() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.metatype.annotations.junit.MetatypeAnnotationsTestCase].testConfigurationPropertyType() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.metatype.annotations.junit.MetatypeAnnotationsTestCase].testSubInterface() | 53 | 0 | 0.0% | [] |
[org.osgi.test.cases.metatype.annotations.junit.MetatypeAnnotationsTestCase].testNoDefaults() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.client.junit.RestTestUtils].
|
48 | 0 | 0.0% | |
[org.osgi.test.cases.rest.client.junit.RestClientTestCase].testFrameworkStartLevelRestClient() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.client.junit.RestClientTestCase].testBundleListRestClient() | 48 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.client.junit.RestClientTestCase].testBundleRestClient() | 66 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.client.junit.RestClientTestCase].testBundleStateRestClient() | 66 | 0 | 0.0% | [] |
[org.osgi.test.cases.rest.client.junit.RestClientTestCase].testBundleStartLevelRestClient() | 62 | 0 | 0.0% | [] |
[org.osgi.test.cases.usbinfo.junit.USBInfoDeviceTestCase].testRegisterDevice01() | 93 | 0 | 0.0% | [] |
[org.osgi.test.cases.usbinfo.junit.USBInfoDeviceTestCase].testRegisterDevice02() | 59 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.tb2.Activator].test() | 55 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.event.RequestProcessor].parseRequest() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorEscapingTestCase].testResultEscaping() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ToDmtTestBase].registerDefaultTestPlugin(java.lang.String,boolean) | 49 | 0 | 0.0% | |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorConstantsTestCase].testInterfaceConstants() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorDmtToTR069TestCase].testDmtNumbersToTR069() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorDmtToTR069TestCase].testDmtBinaryToTR069() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorDmtToTR069TestCase].testDmtStringToTR069String() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorTR069IntToDmtTestCase].testTR069IntToDmtWithSingleFormat() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorTR069IntToDmtTestCase].applyValues() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorOperationsTestCase].testDeleteObject() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorOperationsTestCase].testGetParameterNamesResults() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.tr069todmt.junit.TR069ConnectorTR069LongToDmtTestCase].testTR069LongToDmtWithSingleFormat() | 62 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.tb8.Activator].test() | 53 | 0 | 0.0% | [] |
[org.osgi.test.cases.remoteserviceadmin.tb8.Activator].addServiceProperty() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ExtensionLifecyleTestCase].testExtensionOrdering() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ExtensionLifecyleTestCase].testExtensionRequiresExtension() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ExtensionLifecyleTestCase].testSimpleWhiteboardTarget() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ExtensionLifecyleTestCase].testDynamicFeatureExtension() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ApplicationLifecyleTestCase].testApplicationWhiteboardResource() | 83 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ApplicationLifecyleTestCase].testApplicationIsolationExtensions() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ApplicationLifecyleTestCase].testApplicationIsolationExtensions2() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ApplicationLifecyleTestCase].testApplicationProvidedExtensionDependency() | 57 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ApplicationLifecyleTestCase].testApplicationExtensionDependency() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ApplicationLifecyleTestCase].testSimpleWhiteboardTarget() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ApplicationLifecyleTestCase].testApplicationIsolationContainer() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.JakartarsServiceRuntimeTestCase].checkWhiteboardResourceMethod(org.osgi.service.jakartars.runtime.dto.ResourceMethodInfoDTO) | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.JakartarsServiceRuntimeTestCase].testWhiteboardExtensionDTO() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.JakartarsServiceRuntimeTestCase].testNameBoundDTOs() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.JakartarsServiceRuntimeTestCase].testResourcesWithClashingNames() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ResourceLifecyleTestCase].testSimpleWhiteboardTarget() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.ResourceLifecyleTestCase].testSingletonResourceWhenApplicationChanges() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.CapabilityTestCase].testJaxRsServiceWhiteboardImplementationCapability() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.jakartars.junit.CapabilityTestCase].testJaxRsContractCapability() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.filter.tb1.InstallServices].start(org.osgi.framework.BundleContext) | 102 | 0 | 0.0% | [] |
[org.osgi.impl.service.onem2m.protocol.service.CseService].create(org.osgi.service.onem2m.dto.RequestPrimitiveDTO) | 38 | 0 | 0.0% | [] |
[org.osgi.impl.service.onem2m.protocol.service.CseService].retrieve(org.osgi.service.onem2m.dto.RequestPrimitiveDTO) | 32 | 0 | 0.0% | [] |
[org.osgi.service.typedevent.TopicPermissionCollection].implies(java.security.Permission) | 31 | 0 | 0.0% | [] |
[org.osgi.impl.service.resourcemonitoring.util.Persistence].loadMonitors(org.osgi.framework.BundleContext,java.lang.String) | 38 | 0 | 0.0% | |
[org.osgi.test.cases.zigbee.configuration.ZigBeeProfiles$Parser].startElement(java.lang.String,java.lang.String,java.lang.String,org.xml.sax.Attributes) | 40 | 0 | 0.0% | |
[org.osgi.test.cases.zigbee.configuration.ZigBeeProfiles$Parser].endElement(java.lang.String,java.lang.String,java.lang.String) | 34 | 0 | 0.0% | |
[org.osgi.test.cases.dal.FunctionDataTest].testEqualsAndHashCode() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.dal.FunctionTest].testUnregistrationOrder() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.useradmin.junit.UserAdminControl].testUserAdminEvents() | 33 | 0 | 0.0% | [] |
[org.osgi.test.support.signature.PoolEntry].
|
34 | 0 | 0.0% | |
[org.osgi.test.support.signature.SignatureTestCase].doField(int,java.lang.String,java.lang.String,java.lang.Object) | 39 | 0 | 0.0% | |
[org.osgi.service.permissionadmin.PermissionInfo].
|
62 | 0 | 0.0% | |
[org.osgi.test.cases.converter.junit.MapInterfaceJavaBeansDTOAndAnnotationConversionComplianceTest].testMapConversion() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.MapInterfaceJavaBeansDTOAndAnnotationConversionComplianceTest].testInterfaceConversion() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.MapInterfaceJavaBeansDTOAndAnnotationConversionComplianceTest].testAnnotationConversion() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.MapInterfaceJavaBeansDTOAndAnnotationConversionComplianceTest].testDTOConversion() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.MapInterfaceJavaBeansDTOAndAnnotationConversionComplianceTest].testKeyMapping() | 116 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.MapInterfaceJavaBeansDTOAndAnnotationConversionComplianceTest].testMapToDTOWithGenerics() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.CustomizedConversionComplianceTest].testCustomizedChainConversion() | 41 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.ScalarConversionComplianceTest].testScalarConversionFromStringSpecial() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.converter.junit.ScalarConversionComplianceTest].testScalarConversionMapEntryKeyOrValueSameType() | 66 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc2.tb1.DmtSession.CreateLeafNode].run() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.resolver.junit.ResolveSubstitutionWiresTestCase].createResolveContext(boolean,boolean) | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.bundle.BundleHookTests].testFindHook01() | 56 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.bundle.BundleHookTests].testFindHook02() | 66 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.bundle.BundleHookTests].testFindHook03() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.bundle.BundleHookTests].testSystemFindHook() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.bundle.BundleHookTests].testEventHook01() | 94 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.bundle.BundleHookTests].testEventHook02() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.bundle.BundleHookTests].testSystemEventHook() | 65 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.control.SOAPMaker].createControlRequest(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.util.Dictionary) | 48 | 0 | 0.0% | |
[org.osgi.test.cases.remoteserviceadmin.secure.RemoteServiceAdminSecureTest].testNoPermissions() | 35 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.description.Document].
|
37 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.description.Document].doParse(java.lang.String) | 45 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.description.Document].distributeDevice() | 190 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.description.Document].addEmbeddedDevice(org.osgi.impl.service.upnp.cp.description.Element,org.osgi.impl.service.upnp.cp.description.RootDevice) | 158 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.description.Document].distributeService() | 83 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.description.Document].distribute() | 92 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cp.description.Document].readStartElement(java.lang.String) | 51 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cp.description.Document].readElementValue(java.lang.String) | 41 | 0 | 0.0% | |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testStack() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testUngotten() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testTableAddParticipant() | 42 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testEnumerateCoordinations() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testNestingOk() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testNestingInnerFails() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testNoParticipationOnTwoCoordinationsInTheSameThread() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinatorBasicTests].testEnumerateParticipants() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinationPermissionTests].testActions() | 286 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinationPermissionTests].testWildcard() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinationPermissionTests].testActionImplications() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinationPermissionTests].testFiltersName() | 63 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinationPermissionTests].testFiltersBundle() | 61 | 0 | 0.0% | [] |
[org.osgi.test.cases.coordinator.junit.CoordinationPermissionTests].testPermissionCollection() | 56 | 0 | 0.0% | [] |
[org.osgi.service.cm.ConfigurationPermission].parseActions(java.lang.String) | 33 | 0 | 0.0% | |
[org.osgi.test.cases.metatype.junit.TestControl].testObjectClassDefinition() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.metatype.junit.TestControl].testAttributeDefinition() | 89 | 0 | 0.0% | [] |
[org.osgi.test.cases.metatype.junit.TestControl].testBundleMetaTypeProvider6() | 40 | 0 | 0.0% | [] |
[org.osgi.util.tracker.ServiceTracker].getServiceReference() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc1.tbc.DmtConstants].getDmtData(int,boolean) | 36 | 0 | 0.0% | [] |
[org.osgi.impl.service.tr069todmt.encode.Base64].decode(byte[],int,int) | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.servlet.tb1.HttpWhiteboardTestBundle1].start(org.osgi.framework.BundleContext) | 142 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.fragments.TestControl].testFragmentUpdate() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.fragments.TestControl].testFragmentBundleDetach() | 44 | 0 | 0.0% | [] |
[org.osgi.test.cases.condpermadmin.ConditionalPermissionOrderTests].testLocationPermission() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.condpermadmin.ConditionalPermissionOrderTests].testMultipleLocationConditions02() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.condpermadmin.ConditionalPermissionOrderTests].testPostponedConditions01() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.secure.lifecycle.tb10.TestPermission].testBundlePermissions() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.resolver.ResolverHookTests].testBeginEnd01() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.resolver.ResolverHookTests].testHookErrors01() | 92 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.resolver.ResolverHookTests].testHookErrors02() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.resolver.ResolverHookTests].testBeginTriggers() | 115 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.resolver.ResolverHookTests].testFilterSingletonCollisions01() | 105 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.parser.XMLParser].parseXML() | 93 | 0 | 0.0% | [] |
[org.osgi.test.cases.upnp.tbc.parser.XMLParser].readAttributes(java.lang.StringBuffer) | 63 | 0 | 0.0% | |
[org.osgi.test.cases.upnp.tbc.parser.XMLParser].getXMLTagString(org.osgi.test.cases.upnp.tbc.parser.XMLTag,int) | 32 | 0 | 0.0% | [] |
[org.osgi.impl.service.dmt.DmtSessionImpl].copy(java.lang.String,java.lang.String,boolean) | 35 | 0 | 0.0% | |
[org.osgi.impl.service.dmt.DmtSessionImpl].renameNode(java.lang.String,java.lang.String) | 37 | 0 | 0.0% | |
[org.osgi.impl.service.dmt.DmtSessionImpl].getPluginSession(org.osgi.impl.service.dmt.Node,boolean) | 35 | 0 | 0.0% | |
[org.osgi.impl.service.dmt.DmtAdminCore].dispatchEvent(org.osgi.impl.service.dmt.DmtEventCore) | 42 | 0 | 0.0% | [] |
[org.osgi.util.converter.ConvertingImpl].to(java.lang.reflect.Type,org.osgi.util.converter.InternalConverter) | 67 | 0 | 0.0% | |
[org.osgi.util.converter.ConvertingImpl].convertToDTO(java.lang.Class,java.lang.Class,org.osgi.util.converter.InternalConverter) | 33 | 0 | 0.0% | |
[org.osgi.util.converter.ConvertingImpl].reifyType(java.lang.reflect.Type,java.lang.Class[],java.lang.reflect.Type) | 39 | 0 | 0.0% | |
[org.osgi.util.converter.ConvertingImpl].trySpecialCases(org.osgi.util.converter.InternalConverter) | 69 | 0 | 0.0% | [] |
[org.osgi.util.converter.ConverterImpl].addStandardRules(org.osgi.util.converter.ConverterBuilder) | 34 | 0 | 0.0% | [] |
[org.osgi.util.converter.ConvertingImpl$4].invoke(java.lang.Object,java.lang.reflect.Method[],java.lang.Object) | 68 | 0 | 0.0% | |
[org.osgi.util.converter.CustomConverterImpl$ConvertingWrapper].to(java.lang.reflect.Type,org.osgi.util.converter.InternalConverter) | 35 | 0 | 0.0% | |
[org.osgi.test.cases.networkadapter.junit.NetworkAddressTestCase].testNetworkAddress01() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.networkadapter.junit.NetworkIfTestCase].testAddNetworkAdapter(java.lang.String,java.lang.String,java.lang.String,java.lang.String) | 36 | 0 | 0.0% | |
[org.osgi.test.cases.networkadapter.junit.NetworkAdapterTestCase].testNetworkAdapter01() | 48 | 0 | 0.0% | [] |
[org.osgi.test.cases.networkadapter.junit.NetworkAdapterTestCase].testNetworkAdapter02() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.networkadapter.junit.NetworkAdapterTestCase].testNetworkAdapter03() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.networkadapter.junit.NetworkAdapterTestCase].testNetworkAdapter04() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.networkadapter.junit.NetworkAdapterTestCase].testNetworkAdapter05() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.networkadapter.junit.NetworkAdapterTestCase].testNetworkAdapter06() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.networkadapter.junit.NetworkAdapterTestCase].testNetworkAdapter07() | 46 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.dto.FrameworkDTOTestCase].testArrayServiceReferenceDTO() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.dto.FrameworkDTOTestCase].testServiceReferenceDTO() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.dto.FrameworkDTOTestCase].testFrameworkDTO() | 35 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.dto.FrameworkDTOTestCase].testFrameworkWiringDTO() | 32 | 0 | 0.0% | [] |
[org.osgi.test.cases.dmt.tc3.tbc.MetaNode.MetaData.MetaData].run() | 74 | 0 | 0.0% | [] |
[org.osgi.test.cases.repository.junit.RepositoryTest].testRepositoryContent() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.repository.junit.RepositoryTest].testRepositoryContent2() | 71 | 0 | 0.0% | [] |
[org.osgi.test.cases.repository.junit.RepositoryTest].testQueryExpressions() | 51 | 0 | 0.0% | [] |
[org.osgi.test.cases.repository.junit.Respository1_1Test].testRequirementBuilderAttrsDirs() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.repository.junit.Respository1_1Test].testAndExpression() | 31 | 0 | 0.0% | [] |
[org.osgi.test.cases.serviceloader.secure.junit.ServiceLoaderSecureTest].testServiceRegistrationWithPermission() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.serviceloader.secure.junit.ServiceLoaderSecureTest].testServiceRegistrationWithOutPermission() | 33 | 0 | 0.0% | [] |
[org.osgi.test.cases.serviceloader.secure.junit.ServiceLoaderSecureTest].testClientWithOutPermission() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.serviceloader.secure.junit.ServiceLoaderSecureTest].testLegacyClientWithPermission() | 39 | 0 | 0.0% | [] |
[org.osgi.test.cases.serviceloader.secure.junit.ServiceLoaderSecureTest].testLegacyClientWithOutPermission() | 39 | 0 | 0.0% | [] |
[org.osgi.framework.ServicePermissionCollection].implies(java.security.Permission) | 32 | 0 | 0.0% | [] |
[org.osgi.framework.AdminPermission].parseActions(java.lang.String) | 60 | 0 | 0.0% | |
[org.osgi.framework.AdminPermission].getActions() | 41 | 0 | 0.0% | [] |
[org.osgi.framework.BundlePermission].parseActions(java.lang.String) | 36 | 0 | 0.0% | |
[org.osgi.framework.CapabilityPermissionCollection].implies(java.security.Permission) | 40 | 0 | 0.0% | [] |
[org.osgi.framework.FrameworkUtil$DNChainMatching].parseDNchainPattern(java.lang.String) | 41 | 0 | 0.0% | |
[org.osgi.framework.FrameworkUtil$DNChainMatching].dnChainMatch(java.util.List,int,java.util.List,int) | 39 | 0 | 0.0% | |
[org.osgi.framework.FilterImpl$Item].compare_PrimitiveArray(java.lang.Class,java.lang.Object) | 49 | 0 | 0.0% | |
[org.osgi.framework.PackagePermissionCollection].implies(java.security.Permission) | 40 | 0 | 0.0% | [] |
[org.osgi.framework.PackagePermission].parseActions(java.lang.String) | 33 | 0 | 0.0% | |
[org.osgi.impl.service.dal.step.TestStepImpl].registerNewDevice(java.lang.String[]) | 39 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testFindHook01() | 87 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testFindHook02() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testEventHook01() | 86 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testEventHook02() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testEventListenerHook01() | 209 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testEventListenerHook02() | 47 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testEventListenerHook03() | 54 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testListenerHook01() | 92 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testListenerHook02() | 90 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testListenerHook03() | 45 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testSystemFindHook() | 63 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testSystemEventHook() | 107 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests].testSystemEventListenerHook() | 70 | 0 | 0.0% | [] |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$5].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 37 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$6].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 39 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$3].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 39 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$4].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 37 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$20].event(org.osgi.framework.ServiceEvent,java.util.Map) | 56 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$21].event(org.osgi.framework.ServiceEvent,java.util.Map) | 44 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$22].event(org.osgi.framework.ServiceEvent,java.util.Map) | 39 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$23].event(org.osgi.framework.ServiceEvent,java.util.Map) | 37 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$41].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 39 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$42].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 37 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$43].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 37 | 0 | 0.0% | |
[org.osgi.test.cases.framework.junit.hooks.service.ServiceHookTests$44].find(org.osgi.framework.BundleContext,java.lang.String,java.lang.String,boolean,java.util.Collection) | 39 | 0 | 0.0% | |
[org.osgi.test.cases.cdi.junit.FactoryComponentTests].testFactoryComponent() | 52 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1].checkSingleComponentContextEvents() | 60 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1].checkFactoryComponentContextEvents() | 71 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.CdiBeanTests].testBeanAsServiceWithProperties() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.OptionalReluctantReferenceTests].factoryComponent() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.ConfigurationTests].testConfiguration() | 55 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.ConfigurationTests].testOptionalConfiguration() | 40 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].prototypeFactory() | 62 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].prototypeSingle_C() | 58 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].prototypeSingle() | 49 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].bundleFactory() | 43 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].bundleSingle_C() | 37 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].singletonFactory() | 38 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].singletonSingle_C() | 34 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].immediateFactory() | 36 | 0 | 0.0% | [] |
[org.osgi.test.cases.cdi.junit.Test152_3_1_1].immediateSingle_C() | 32 | 0 | 0.0% | [] |
[org.osgi.impl.service.upnp.cd.control.SOAPParser].controlReqParse(java.lang.String) | 31 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.control.ControlImpl].sendHttpRequest(java.util.Dictionary,java.lang.String,java.io.DataOutputStream) | 69 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.control.ParsedRequest].upnp2java_converter(java.util.Dictionary,java.util.Hashtable) | 56 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.control.ParsedRequest].java2upnp_converter(java.util.Dictionary,java.util.Hashtable) | 67 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.control.SOAPMaker].createControlResponseOK(java.lang.String,java.lang.String,java.util.Dictionary) | 44 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.control.SOAPMaker].createResponseError(java.lang.String) | 56 | 0 | 0.0% | |
[org.osgi.impl.service.upnp.cd.control.SOAPMaker].createQueryResponse(java.lang.String) | 38 | 0 | 0.0% |
This section shows which files and directories are considered in this report. The main reason for showing this is fuzz introspector may include more code in the reasoning than is desired. This section helps identify if too many files/directories are included, e.g. third party code, which may be irrelevant for the threat model. In the event too much is included, fuzz introspector supports a configuration file that can exclude data from the report. See the following link for more information on how to create a config file: link
Source file | Reached by | Covered by |
---|---|---|
/src/osgi/org.osgi.service.onem2m/src/org/osgi/service/onem2m/ServiceLayer.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/BufferedPushStreamImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/ServletContextRegistrationTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/messages/MessageType_2.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/permissions/ConditionServicePermisionTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/ResourceContextImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetExtensionPropertyKeys.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb12/NativeCodeFilterOptional.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/DirContextWrapperImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb2a/SomeServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/DriverJDBCProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/event/ZigBeeEventImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/DriverLoadingLocator1.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/junit/MultiFrameworkTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/TR069ConnectorFactoryImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/TestInterface.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZigBeeComplexDescriptorImpl.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/FunctionEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/junit/RepositoryTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb32/ConditionReferenceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/UnwrappableXADataSourceJDBCProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4/impl/NamedServiceFactory.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/service/FindHook.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/junit/RestServiceXMLTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/OptionalReluctantReferenceTests.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/Converting.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/FatalExceptionDataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/junit/EventTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1k/PrototypeSingle_C.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/MountPointEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.pushstream/src/org/osgi/test/cases/pushstream/junit/PushEventStreamToPushEventSourceTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3/Two.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/AbstractFeatureConfigurationAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/IsValidName.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureArtifactBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/ResolveRelatedTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/ApplicationLifecyleTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/DmtTestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/testcond/TestCondition.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb6/NoArgsNS100.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/EnOceanMessageDescription.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/base64.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPrincipalPermission/Implies.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/Promises.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/FailedPromisesException.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/junit/ArrayAndCollectionConversionComplianceTest.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZigBeeDeviceDescriptionSet.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/ToBeOverlappedDataPluginActivator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger56.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBoolean.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/exports/service/SomeService.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/uses/ExportUsesProviderType.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/BundleStartLevelPojo.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/OperationMetadataImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/SamsungUPnPService.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialDirContextFactory1/InitialDirContextFactory1Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.serial/src/org/osgi/test/cases/serial/util/TestServiceListener.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/AbstractBufferBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/impl/MyServiceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/TestPluginMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/messages/MessageType_1.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/TransactionManagerFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb6/ActDeactComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/LengthyTransactionManagerTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb11/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/TransactionSynchronizationRegistryFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtAdminDelegate.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tbf1/impl/FailedUnaryReferenceImpl.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/ID.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureExtension.java | [] | [] |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/configuration/ParserUtils.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5d/UnfilteredAllServiceListenerTesterImpl.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ServiceBundle.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14h/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb10/SingleReferenceEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/NonInstanceFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/dto/FrameworkDTOTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/importer/Activator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/xpath/AbstractXPathAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/log/SimpleLog.java | [] | [] |
/src/osgi/org.osgi.service.prefs/src/org/osgi/service/prefs/PreferencesService.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/FeatureAssert.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/AuthorizationImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTInitialContextFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/ExtensionConfigProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb7/EnablerProvider.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/JNDIContextManagerServiceFactoryImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/AbstractFeatureAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/FunctionEventTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/registerModify/RegisterModifyActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/WebContainerTestBundleControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/FunctionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/TestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/OverlappingExecPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb8a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClassAdd101.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/exporter1/ExporterActivator.java | [] | [] |
/src/osgi/org.osgi.service.jakartars/src/org/osgi/service/jakartars/runtime/JakartarsServiceRuntime.java | [] | [] |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/junit/impl/AsyncErrorListener.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/NetworkIfData.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/OSGiServiceListContext.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/Util.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/EndpointEvent.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.metatype.annotations/src/org/osgi/impl/bundle/metatype/annotations/SubInterface.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClassAdd100.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/RemoteServiceAdminTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtSessionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/AdMinMaxTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/junit/TypedEventCapabilityTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/InitialContextFactoryWrapper.java | [] | [] |
/src/osgi/org.osgi.test.cases.log.launch/src/org/osgi/test/cases/log/launch/junit/LaunchTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/NotSupportedContext.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/FrameworkWiring.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1e/SingletonSingle_C.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/enumvalues/EnOceanChannelEnumValue2.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ReflectiveInvokeAction.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/IsValidValue.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactoryBuilder1/InitialContextFactoryBuilder1Activator.java | [] | [] |
/src/osgi/org.osgi.resource/src/org/osgi/resource/Capability.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorTR069BoolToDmtTestCase.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/security/AlertPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/junit/Respository1_1Test.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/RemoteServiceAdminUpdateTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/description/DeviceServlet.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/residential/Filter.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeEnumeration8.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/config/file/ZigBeeNodeConfig.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/PluginUnregisteredException.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/FieldInjectedBundleScopedImpl.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/notification/AlertItem.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/activationpolicy/tblazy6/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/tb2/AttributeDefinitionImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/basedriver/UPnPStateVariableImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/client/LegacyClient.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClassAdd99.java | [] | [] |
/src/osgi/org.osgi.util.function/src/org/osgi/util/function/Consumer.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/Node.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZCLFrameImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.device.manager/src/org/osgi/impl/service/device/manager/MatchImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/description/DServletContext.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/NameMapping.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb24c/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.usbinfo/src/org/osgi/impl/service/usbinfo/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/junit/ClusterTagPermissionTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb8/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb33/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb11/OptionalReference_FC.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/step/TestStepProxy.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/ToBeOverlappedDataPlugin.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/fop/FOPMain.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb11/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/FrameworkEventCollector.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/DataMountPluginTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/ActiveStartLevel.java | [] | [] |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/AsyncService.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/Document.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/basedriver/UPnPIconImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5c/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/plugins/MetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorSessionsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/Equals.java | [] | [] |
/src/osgi/org.osgi.service.coordinator/src/org/osgi/service/coordinator/Coordination.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/Producer.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTObjectFactory.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/UserAdminPermission.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/DataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16e/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb11/OptionalReference_AS.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/FeatureIDAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/TestIdentitySet.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtException/DmtExceptionConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/adaptions/BundleAdaptTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/discovery/DiscoveryMsgSender.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/data/AlarmData.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/XADataSourceJDBCProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb2/ConsumerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1658_PermanentNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/control/SOAPParser.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/MyDTOWithMethods.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/AsyncWhiteboardResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/service/PermissionSignatureTBCService.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClassAdd101.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/service/ExampleService.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTContext.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeEvent.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/MountPlugin.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ConfigurationListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb2/StaticExport.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.secure/src/org/osgi/test/cases/dal/secure/DeviceSecureTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/UPnPController.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/AbstractPreferences.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.filter/src/org/osgi/test/filter/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ReferenceNames.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/LogPlugin/Splitter.java | [] | [] |
/src/osgi/org.osgi.service.device/src/org/osgi/service/device/Match.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/DmtAdmin.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/event/EndResponse.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/NonAtomic/TestNonAtomicPluginActivator.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FiltersReadOnlySession.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/LogPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/ScalarFieldTestService.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv6/RedirectingDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/client/ColorProviderClientOSGi.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/recovery/RecoverableXAResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/serviceregistry/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/client/ColorProviderClient.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/C.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTDirContext.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/tb10/BundleActivatorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetNodeTitle.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTInitialDirContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/ExecMountPluginTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/JNDIProviderAdminImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DmtTestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1g/BundleSingle.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev3/BasicDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPermission/DmtPermissionConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/context/GetBundleByLocationTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/DisableComponentTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb27/impl/ConstructorInjection.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/ReverseParticipantOrderNotifyTest.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/FrameworkEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/FeatureConfigurationAssert.java | [] | [] |
/src/osgi/org.osgi.service.cdi/src/org/osgi/service/cdi/reference/BindBeanServiceObjects.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtConstants.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/RuntimeBundleMerge.java | [] | [] |
/src/osgi/org.osgi.service.metatype/src/org/osgi/service/metatype/MetaTypeProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb6c/SomeServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestPluginReadWriteDataSession.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/HttpServiceRuntimeTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/ProducerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/UPnPControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/BasicTypes.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZCLHeaderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.bundle.annotations/src/org/osgi/test/cases/bundle/annotations/junit/RequirementAnnotationsTestClass.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb20/NativeCodeLanguageSuccess.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLCommandResponseStream.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/syncbundlelistener/SyncBundleListenerTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClass100.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/ObjectProvider1.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/BundleRevision.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/Restart.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/resolver/ResolverHookFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb34/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/FeatureLauncher.java | [] | [] |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/ServiceLayerFactoryImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1746_UriProperties.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb17d/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/PojoReflector.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/wiring/Bug1922Test.java | [] | [] |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/FireAndForgetWork.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/service/ServiceHookTests.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/log/LogEntryCollector.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb1a/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest.client/src/org/osgi/impl/service/rest/client/DTOReflector.java | [] | [] |
/src/osgi/org.osgi.util.tracker/src/org/osgi/util/tracker/ServiceTrackerCustomizer.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/FatalExceptionDataPluginActivator.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ConvertingImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertItem/AlertItem.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTNameParser.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ActivationFields.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/Subscription.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/map/Maps.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1f/SingletonFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/ConverterTest.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeTimeOfDay.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/LogReaderService.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/service1/ExampleServiceActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Uri/IsAbsoluteUri.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestExecPlugin.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/descriptions/ZCLClusterDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/AbstractEnOceanTestCase.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData48.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/junit4/AbstractOSGiTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/RemoteAlertSenderImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/RenewalCheck.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/InvalidSyntaxException.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/RequestProcessor.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5d/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev20/StandaloneDriverTestDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/KeepFailedCoordOnStackTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb3e/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTContext.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/MultiLevelSensor.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17f/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ServiceFactory.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/UserAdminListener.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring.fakemonitors/src/org/osgi/impl/service/resourcemonitoring/fakemonitors/FakeResourceMonitorFactory.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/EndpointListener.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/SendUnsubscribe.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/RequirementBuilder.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/OSGiURLParser.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/activationpolicy/TestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetNodeTimestamp.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb6/SPImpl.java | [] | [] |
/src/osgi/org.osgi.service.serial/src/org/osgi/service/serial/SerialDevice.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtEventImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.pushstream/src/org/osgi/test/cases/pushstream/junit/PushStreamTerminalOperationTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/FilteredConsumerImpl.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/decorator/BaseFeatureDecorationBuilder.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/QueuePolicy.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/ResourceMonitoringServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb6a/NormalUpdate.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/TestDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.prefs/src/org/osgi/test/cases/prefs/junit/PrefsControl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeClusterID.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/Promise.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactory2/InitialContextFactory2Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTInitialDirContextFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/impl/MyServiceImpl.java | [] | [] |
/src/osgi/templates/org.osgi.impl.service.template/src/org/osgi/impl/service/template/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17j/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPermission/Equals.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/wiring/BundleWiringTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/InvocationHandlerFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4e/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb2a/Activator.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/InternalConverter.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/RemoteServiceAdminListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT1/BundleT1Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb28/Activator.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ConfigurationPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/CommonJDBCProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/BundlesResource.java | [] | [] |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/Condition.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServiceException.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeGroup.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ServiceBasedNamingEnumeration.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb16d/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/NewDataPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/frameworkutil/FrameworkUtilFilterTests.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ConfigurationException.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/junit/ExtensionBundleTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/FilteredProducerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestDmtEventListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/plugins/Node.java | [] | [] |
/src/osgi/cnf/src/BundleInfo.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestServiceBase.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/EnOceanDevice.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/EventRegistry.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/importer1/ImporterActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/weaving/WeavingHookTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb7h/Activator.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServiceListener.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/BundleReference.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/RenameNode.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/util/teststep/ZigBeeEventSourceImpl.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceContext.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/residential/Wire.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTDirObjectFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal.step/src/org/osgi/impl/service/dal/step/TestStepImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/hooks/weaving/WeavingHookTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/control/ParsedRequest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetFormat.java | [] | [] |
/src/osgi/org.osgi.service.resolver/src/org/osgi/service/resolver/Resolver.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeFloatingSingle.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/Processor.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/SetDelegate.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/export/UPnPExportedDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/FeatureArtifactAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/NameMappingComponent.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ServiceAwareContextFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb16/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/Control.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/AbstractStringReplacer.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/StringReplacer.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtData/Equals.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetLockType.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/StreamQueueImpl.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/rasterizer/RasterizerMain.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/NotExpression.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/CreateLeafNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/RegistrationTestCase.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/Mutable.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/notification/NotificationService.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/ImportRegistration.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb31/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/PersistenceManager.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/SSDPParser.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger16.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/EventFactory.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/FeatureRuntime.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/urlContext1/URLContext1Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/enumvalues/EnOceanChannelEnumValue0.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/MetaData/TestPluginMetaDataMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/Bug1852R6Test.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/TC6_ResourceContextListenerTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/DefaultOverlappingPluginTransactionalDataSession.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/decorator/FeatureDecorator.java | [] | [] |
/src/osgi/org.osgi.service.jakartars/src/org/osgi/service/jakartars/client/PromiseRxInvoker.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/RemoteAlertSenderActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/dynpkgimport/exported/TestService.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/junit/ServiceTrackerTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/rpc/QueryFunction.java | [] | [] |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/ComponentException.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/reflect/MethodCall.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/impl/AsyncJava8TypesImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/ZigBeeBundleActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/DataSourceFactoryJDBCProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/ResourceContextInfo.java | [] | [] |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/junit/NetworkAddressTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetNodeValue.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/EnOceanMessageDescription2.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/registerPlural/registerPluralActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/ProgrammerErrorTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClass100.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/Persistence.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTDirObjectFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/EmptyLocator.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb8/OptionalNames.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ZigBeeServerMask.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/bundlemanagement/BundleManagerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Uri/ToPath.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/plugins/MultiRootDataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb3/ConsumerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/export/TestService.java | [] | [] |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb3/CustomXMLParserActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/ResolverFrameworkTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3c/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb6/ProducerImpl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap8.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/NoServiceFactory.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/Disabled.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/DataSourceJDBCProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/listener/AllServiceListenerTester.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/SimulatedDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTReference.java | [] | [] |
/src/osgi/org.osgi.util.tracker/src/org/osgi/util/tracker/AbstractTracked.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb2b/StopWithException.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/MultiLevelControlTest.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ZigBeeSimpleDescriptor.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/DeviceRenewalThread.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtEvent/DmtEvent.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ReferenceScopes.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/SynchronizationImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/tb2/MetaTypeProviderImpl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZigBeeDeviceDescription.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap24.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/UntypedEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/IsLeaf.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/SessionManipulator.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/Consumer.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/TransactionStarter.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/exports/security/SomePermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/startlevel/StartLevelControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/configuration/ParserUtils.java | [] | [] |
/src/osgi/org.osgi.service.tr069todmt/src/org/osgi/service/tr069todmt/ParameterInfo.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/startlevel/BundleStartLevel.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb4/CallableImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/ResolveSubstitutionWiresTestCase.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/DmtSession.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb2/Export.java | [] | [] |
/src/osgi/org.osgi.service.tr069todmt/src/org/osgi/service/tr069todmt/TR069Exception.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ConverterBuilderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17e/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ConfigPolicyIgnore.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/ReadOnly/TestReadOnlyPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/FeatureBundleAssert.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/UnbufferedPushStreamImpl.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/AddableMAP.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/TargetRule.java | [] | [] |
/src/osgi/org.osgi.resource/src/org/osgi/resource/Requirement.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/Close.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/LogService.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/Bundle.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTInitialContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/string/Strings.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/BundleException.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/DynamicMultipleFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/EventHandlerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtTestControl.java | [] | [] |
/src/osgi/org.osgi.service.url/src/org/osgi/service/url/AbstractURLStreamHandlerService.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/ConditionalPermissionOrderTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/junit/FeatureCapabilityTestCase.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/service/log/Log.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/BundleRevisions.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/ConverterFunctionTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZCLAttributeImpl.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/WireAdminEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14g/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb8/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv1/DeviceDetectionTestDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/messages/MessageExample1.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClass99.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/factories/FactoryBundleActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/NewDataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTBindingEnumeration.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/TypedEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/impl/SlowServiceImpl.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureService.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/user/ExportConsumerType.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorConstantsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/junit/TopicPermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/BundleVersionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClassBase.java | [] | [] |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/handler/TestEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb4/ProducerImpl.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/BuilderFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4f/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb4a/ExportPackage.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/SlowService.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/fragments/TestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/EntityManagerFactoryBuilderJDBCProviderJPAProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Others/UseCases.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/AbstractFeatureBundleAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev100/BasicDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/UnwindStackTest.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeAttributeID.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZCLAttributeImpl.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPAction.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/DmtEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/OverlappingDataPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype.annotations/src/org/osgi/test/cases/metatype/annotations/junit/MetatypeAnnotations14TestCase.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/Converters.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/NoBlockParticipantNotifyTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/impl/AsyncErrorListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb20/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/IsNodeUri.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/syncbundlelistener/tb1a/PermissionTester.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/util/Service3.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring.util/src/org/osgi/impl/service/resourcemonitoring/util/Persistence.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/fragments/tb18/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/basedriver/UPnPBaseDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/SetDefaultNodeValue.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/decorator/FeatureExtensionHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb4/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/AlarmTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb27/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jdbc/src/org/osgi/test/cases/jdbc/junit/JDBCTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/servicereferencegetter/ServiceReferenceGetter.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/Properties.java | [] | [] |
/src/osgi/org.osgi.service.startlevel/src/org/osgi/service/startlevel/StartLevel.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/AsyncDelegateTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/ClientTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClass100.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ComponentReferences.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/classloading/ClassLoadingTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/IsZeroOccurrenceAllowed.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetNodeVersion.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1j/PrototypeSingle.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/DiscoveryClient.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ExceptionsTestCases.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb2c/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZCLReadStatusRecordImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/ServiceComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb21/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptions/ZCLClusterDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/servicereferencegetter/TestResult.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw4/servlet/TestServlet3.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4/NamedService.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/Instance_Optional.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/EnOceanHost.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/StaticScalarFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/lock/ResourceContextLock.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/ServletTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ZigBeeExportTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/RMTConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/TW8Test.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/RuntimeMerges.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushEventConsumer.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/frameworkutil/DictionariesTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/EventAccessForExporter.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb28/FailedActivation.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTExceptionalInitialContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/resolver/ResolverHook.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/step/TestStep.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/impl/ColorProviderImpl2.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/control/TransactionTxControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/EnclosingCoordinationTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/BundleRepresentationsResource.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ConverterFunction.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/impl/MyServiceAsyncDelegateFactory.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZDPResponse.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestDataMountPlugin.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger24.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/HelloWorld13.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/admin1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/DriverLoadingLocator2.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/validate/VersionRange.java | ['CoreVersionRangeFuzzer'] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger24.java | [] | [] |
/src/osgi/org.osgi.service.event/src/org/osgi/service/event/TopicPermission.java | [] | [] |
/src/osgi/org.osgi.impl.service.device.manager/src/org/osgi/impl/service/device/manager/Activator.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/AdaptPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/PackagePermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertPermission/AlertPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.useradmin/src/org/osgi/test/cases/useradmin/junit/UserAdminEventCollector.java | [] | [] |
/src/osgi/org.osgi.service.serial/src/org/osgi/service/serial/SerialEventListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.jpa/src/org/osgi/test/cases/jpa/junit/JPATestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/setallpermission/SetAllPermissionActivator.java | [] | [] |
/src/osgi/org.osgi.service.serial/src/org/osgi/service/serial/SerialPortConfiguration.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZigBeeSerializer.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/Copy.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ServicePrototype.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZigBeeEndpointImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb6/TB6Activator.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServiceReference.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/JPARecoveryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClass8.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1/Three.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1e/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorTR069LongToDmtTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/intf/LeafNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb7f/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/CapabilityTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb4/PermissionPermissionsControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5b/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/Assertions.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSecurityKey128.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1c/ImmediateFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.promise/src/org/osgi/test/cases/promise/junit/PromiseTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/Activator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeEndpoint.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/impl/TestServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClassAdd100.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/bundle/CollisionHook.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/ObjectProviderBase.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16i/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17b/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/syncbundlelistener/SyncBundleListenerTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/dynpkgimport/tb0/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/TypeConverter.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSet.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb5/EventTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/SessionWrapper.java | [] | [] |
/src/CoreVersionFuzzer.java | ['CoreVersionFuzzer'] | ['CoreVersionFuzzer'] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/Acl.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/export/Digest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetRootUri.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ExecPlugin/TestExecPluginActivator.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/IntermediatePushStreamImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/AddPermission.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/EndpointPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype.annotations/src/org/osgi/test/cases/metatype/annotations/junit/OCD.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/BundlePermission.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/EnOceanBaseDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Uri/ToUri.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ConverterBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/version/VersionTests.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/Group.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/shared/Synchronizer.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/PermissionTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb0/Activator.java | [] | [] |
/src/osgi/org.osgi.service.coordinator/src/org/osgi/service/coordinator/SingletonException.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/plugins/MetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/serial/EspRadioPacket.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest.client/src/org/osgi/impl/service/rest/client/RestClientFactoryImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/control/ControlImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb36/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/junit/ConditionalUtility.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/bundlemanagement/BundleLock.java | [] | [] |
/src/osgi/org.osgi.service.cdi/src/org/osgi/service/cdi/reference/BindServiceReference.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw1/servlet/ErrorTestServlet.java | [] | [] |
/src/osgi/org.osgi.service.jndi/src/org/osgi/service/jndi/JNDIProviderAdmin.java | [] | [] |
/src/osgi/org.osgi.service.coordinator/src/org/osgi/service/coordinator/CoordinationException.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeOctetString.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactoryWithProperties/InitialContextFactoryWithPropertiesActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetScope.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/junit/FeatureServiceTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/SimpleTransactionSynchronizationRegistryTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/Attribute.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/weaving/WovenClass.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv3/ConcurentDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/DriverLoadingLocator3.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb29/LoggerComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4a/impl/NamedServiceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/data/KeypadDataTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb16/NativeCodeFilterAlias.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/EnOceanMessageDescriptionSet.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/DefaultRuntimeInitialContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/export/TestAction.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClass101.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/resolver/ResolverHookTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/LogContentTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/TestExceptions.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb5/CheckManifest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/weaving/tb1/TestClass.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTExceptionalInitialContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtException/PrintStackTrace.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/AdaptPermissionTests.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap56.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTBindingEnumeration.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/BundleRequirement.java | [] | [] |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/util/NetworkIfTestUtil.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/EventQueue.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/LocalTxControlTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Uri/IsValidUri.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/interfaces/BeanService.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/PropertyOrdering.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceMonitoringService.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/filter/tb1/ObjectB.java | [] | [] |
/src/osgi/org.osgi.service.tr069todmt/src/org/osgi/service/tr069todmt/ParameterValue.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/DeviceExporter.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZCLAttributeInfoImpl.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/DynamicMapLikeFacade.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5b/ServiceListenerTesterImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/control/ParsedRequest.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/JDBCRecoveryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Others/OpenSession.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLFrame.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb8/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/TestUtil.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/MetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/LogPlugin/LogPluginActivator.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/nouses/ExportNousesConsumerType.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1c/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/TestMetaNodeDataPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/impl1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/EnOceanHostTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedMultiLevelSensor.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/FieldInjectedService.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/TestNotExportedZigBeeEndpoint.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1732_MountPointHandling.java | [] | [] |
/src/osgi/org.osgi.test.cases.pushstream/src/org/osgi/test/cases/pushstream/junit/PushStreamTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/PromiseConverterProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetNodeTimestamp.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/BaseHttpWhiteboardTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb9/CheckManifestGetHeadersLocale.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1h/BundleSingle_C.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/ToString.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/data/BooleanData.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZCLAttributeDescription.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap16.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/NetworkIfManager.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/UserAdminImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/ExecPlugin/TestExecPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/junit/LaunchTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16g/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.serial/src/org/osgi/impl/service/serial/SerialEventImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/ssdp/DeviceExpirationThread.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/ct/ctURLContext.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClassAdd8.java | [] | [] |
/src/osgi/org.osgi.service.resolver/src/org/osgi/service/resolver/ResolutionException.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/service/log/LogEntry.java | [] | [] |
/src/CoreFilterFuzzer.java | ['CoreFilterFuzzer'] | ['CoreFilterFuzzer'] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/data/LevelData.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/ResolvedPromiseImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/control/SOAPConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/InternalChangedEventTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FiltersMetaNode.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/UACredentials.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/radio/MessageRPS.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/DiscoveryServer.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb4/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/AbstractFeatureArtifactAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetEffectiveNodeAcl.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushbackPolicy.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/event/ZCLCommandResponseStreamImpl.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/NoService.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/ParameterInfoImpl.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/WireAdminListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtEvent/DmtEventListenerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/DiscoveryTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/EchoResource.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/ScaffoldMetaNode.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/RepositoryContent.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/description/DescriptionInvoker.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceMonitor.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/ImportReference.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/xpath/BaseNamespaceContext.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FrameworkReadWriteSession.java | [] | [] |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/AsyncServiceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb12/Comp.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/TopicPermission.java | [] | [] |
/src/osgi/org.osgi.impl.service.usbinfo/src/org/osgi/impl/service/usbinfo/USBInfoDeviceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/LoggerComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/ScaffoldNodeTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/GroupImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/service/ReceiverService.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/TBCService.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/User.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/BundleExceptionPojo.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/IsLeafNode.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPException.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/SingleElementComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestDataPlugin.java | [] | [] |
/src/osgi/org.osgi.service.tr069todmt/src/org/osgi/service/tr069todmt/TR069Connector.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/junit/RestClientTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/service2/ExampleServiceActivator2.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Others/DmtSessionConstraints.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb3/TB3Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/FrameworkStructureTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/ConstructorInjectedService.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/util/Service2.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/junit/FeatureIDTest.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.transaction/src/org/osgi/impl/bundle/transaction/Activator.java | [] | [] |
/src/osgi/org.osgi.util.function/src/org/osgi/util/function/Supplier.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/OSGiURLContextFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/EnumMemberComponent.java | [] | [] |
/src/osgi/org.osgi.service.rest/src/org/osgi/service/rest/client/RestClient.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tbX/SomeInterface.java | [] | [] |
/src/osgi/org.osgi.impl.service.usbinfo/src/org/osgi/impl/service/usbinfo/TestStepImpl.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/DmtException.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/tb1/TestServlet.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo.secure/src/org/osgi/test/cases/clusterinfo/secure/tb/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/KeypadTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb7/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/junit/LogServiceTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/PrefixInterface.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap32.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/connect/ModuleConnector.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/weaving/WeavingHook.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/DeviceDetails.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb18/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb1/Activator.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/xmldoclet/Version.java | [] | [] |
/src/osgi/org.osgi.service.tr069todmt/src/org/osgi/service/tr069todmt/TR069ConnectorFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/NonAtomic/TestNonAtomicPlugin.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData40.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/control/TestTxControlImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/UPnPControllerImpl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeStructure.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb3/impl/ServiceConsumerEventImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4c/Activator.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/Function.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/weaving/tb1/TestDynamicImport.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/JSONList.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/LogTracker.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17c/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb7/RollbackUpdate.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetValidValues.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/junit/DeclarativeServicesControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTDirContext.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/tb2/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/fragments/TestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/MetaData/MetaData.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtAdmin/RemoveEventListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/ResourceLifecyleTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/tb5/EventTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetSetNodeValue.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/tb1/HttpWhiteboardTestBundle1.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/ResolveDynamicTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tbnontrusted/Activator.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/BasicEnvelope.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/Segment.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/EnOceanEnumChannelDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTTestObject.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeIEEE_ADDRESS.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb1/BeanImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPermission/Implies.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/mock/MockFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/AdMaxOnlyTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/control/TestTransactionControl.java | [] | [] |
/src/osgi/org.osgi.service.serial/src/org/osgi/service/serial/SerialDeviceException.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/InterfaceWithDefaultMethod.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb7/BindUnbind.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/residential/$.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/junit/ComponentPropertyTypeTestCase.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/EnOceanRPC.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/impl/TestServiceImpl.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/startlevel/FrameworkStartLevel.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/Shutdown.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ZigBeeNodeDescriptor.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/util/IService1.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/Enabled.java | [] | [] |
/src/osgi/org.osgi.util.function/src/org/osgi/util/function/Function.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/PersistenceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb2/TB2Activator.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/OrExpression.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptions/ZCLParameterDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/Rollback.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClass8.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/RenameNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/common/B.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeDataOutputImpl.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/security/DmtPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/DmtConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Constraints/AclConstraints.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/PromiseFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTInitialDirContextFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FrameworkReadOnlySession.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/configuration/ConfigurationFileReader.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/config/file/ZigBeeEndpointConfig.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorEscapingTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/control/ControlImpl.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/service/ListenerHook.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT2/BundleT2Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1731_StringConstants.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/xmldoclet/DDFNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb6/NoArgsNS110.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/TestClassResult.java | [] | [] |
/src/osgi/org.osgi.service.coordinator/src/org/osgi/service/coordinator/CoordinationPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb17/ReferencePolicyOption.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLEventListener.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/Failure.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/resolver/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/CustomContentHandler2.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/SoftAssertions.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/ReadableDataSession.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/PackagePermission.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/residential/Bundle.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetPrincipal.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/DmtData.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/StreamQueue.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/FilterImpl.java | ['CoreFilterFuzzer'] | ['CoreFilterFuzzer'] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/Uri.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/TraditionalInitialContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev1/BasicDevice.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/RootDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/util/ServiceUpdateHelper.java | [] | [] |
/src/osgi/org.osgi.service.async/src/org/osgi/service/async/Async.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/SendEvents.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/resolver/tb1/Test.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/filter/AbstractFilterTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/UPnPException.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/FeatureExtensionAssert.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedBooleanSensor.java | [] | [] |
/src/osgi/org.osgi.test.cases.pushstream/src/org/osgi/test/cases/pushstream/junit/SimplePushEventSourceTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/FrameworkContentTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/activationpolicy/TestResults.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/ResourceContextEventNotifierImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetState.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/junit/PermissionSignatureTestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/tests/TestJNDIContextManager.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev2/BasicDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactory1/ObjectFactory1Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/PluginSessionWrapper.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/MeterTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/CoordinatorTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/junit/AsyncTestUtils.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/exported/TestService.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/UnsubscribeCheck.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/TransactionUtil.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/WakeUpTest.java | [] | [] |
/src/osgi/org.osgi.util.function/src/org/osgi/util/function/Exceptions.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptions/ZCLAttributeDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/StringReplacerDynamicFeature.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb21/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb23/ConfigurableComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/junit/DS14TestCase.java | [] | [] |
/src/osgi/org.osgi.service.event/src/org/osgi/service/event/Event.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb1/CheckManifest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/LogPlugin/LogPlugin.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/Specifying.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushEvent.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/GenaConstants.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/EndpointEventListener.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/JSONBoolean.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/ServiceWithProperties.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb22/NativeCodeVersionSuccess.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/DmtEventListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/filter/FilterTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/control/NoTransactionTxControl.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/Repository.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedMultiLevelControl.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/BooleanControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/tb/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/serial/EspPacket.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/LengthyTimeoutTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb1/ImportUninstalled.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/CoordThreadPushPopTest.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/EnOceanChannelDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/CommonJPAProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb2a/StartWithException.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/tb5/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/register/RegisterActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ZigBeeComplexDescriptor.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/serviceregistry/ServiceObjectsPermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/junit/CoordinatorSecureTests.java | [] | [] |
/src/osgi/org.osgi.util.tracker/src/org/osgi/util/tracker/BundleTrackerCustomizer.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/WhiteboardResource.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/Envelope.java | [] | [] |
/src/osgi/org.osgi.test.cases.configurator/src/org/osgi/test/cases/configurator/junit/ConfiguratorTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/spi/ShapeProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.usbinfo/src/org/osgi/test/cases/usbinfo/util/USBTestProxy.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/TypeReference.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/NetworkIfTracker.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb8/SingleComponentBean.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ZCLClusterTestCases.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/TestDictionary.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/interfaces/PrototypeScoped.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/intf/Node.java | [] | [] |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/junit/SecurityTestCase.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLAttribute.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/RestService.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw4/servlet/TestServlet1.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/Server.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/control/SOAPParser.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigIdHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/FunctionEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb30/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/RMTTestBase.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/junit/StandardConverterComplianceTest.java | [] | [] |
/src/osgi/org.osgi.service.event/src/org/osgi/service/event/EventProperties.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/PojoImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/util/UPnPEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/data/LevelDataTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/Commit.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/BadFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/HeaderStringReplacer.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb23/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/LogPlugin/LogMetaNode.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/event/ZCLEventListenerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/ScaffoldNodeHelper.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring.util/src/org/osgi/impl/service/resourcemonitoring/util/EventNotifier.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/exports/listener/AllServiceListenerTester.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/data/Comparator.java | [] | [] |
/src/osgi/org.osgi.test.cases.usbinfo/src/org/osgi/test/cases/usbinfo/junit/USBInfoDeviceTestCase.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/Functioning.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZCLFrameImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tbf1/impl/UnaryReferenceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/config/file/ConfigurationFileReader.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/IdentityExpression.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/common/Utils.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/BooleanControlTest.java | [] | [] |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/ConditionalPermissionInfo.java | [] | [] |
/src/osgi/org.osgi.dto/src/org/osgi/dto/DTO.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/AdMinOnlyTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16i/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetNodeVersion.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb7c/Activator.java | [] | [] |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/ConditionalPermissionAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/FieldReferences.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/RMTUtil.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/MappingTable.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/Element.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/FactoryProperties.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/compatibility/DefaultTestBundleControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/TestServiceListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/ServicePermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/exceptionalInitialContextFactoryBuilder1/ExceptionalInitialContextFactoryBuilder1Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/messages/Message.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4g/Activator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/ServiceEventCollector.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/WakeUp.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/SimulatedService.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtData/DmtDataConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/DeleteNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb1b/SomeServiceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtPrincipalPermissionAdminImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/EventTest.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/SignerProperty.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/TreeStructure/Log.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/permissions/AdminPermissionBundleTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/MethodCall.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/connect/test/classes/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtAdmin/GetSession.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/LoggerConsumer.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/control/SOAPErrorCodes.java | [] | [] |
/src/osgi/org.osgi.test.cases.component.annotations/src/org/osgi/test/cases/component/annotations/junit/AnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/junit/DTOUtil.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/xpath/XPathAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/junit/FieldInjectionControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/junit/ConversionComplianceTest.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/Service.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/impl/EnOceanDeviceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/tb1/TestServletReturnsContextPath.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/DefaultInitialContextFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/EventDispatcher.java | [] | [] |
/src/osgi/org.osgi.service.permissionadmin/src/org/osgi/service/permissionadmin/PermissionInfo.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/TestStarter.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/services/ServicePrototypeScope.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/plugins/Node.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/junit/RestTestUtils.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv5/NotMatchingDriver.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/ssdp/SSDPUnicastListener.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/PreferencesServiceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring.util/src/org/osgi/impl/service/resourcemonitoring/util/ResourceMonitorInfo.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap48.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/selectors/DriverLoadingTestSelector2.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData16.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/Node.java | [] | [] |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/runtime/ServiceComponentRuntime.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb19/NativeCodeLanguage.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZCLClusterImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/importer2/ImporterActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype.annotations/src/org/osgi/test/cases/metatype/annotations/junit/OCDXPathAssert.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/HelloWorld12.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/Helper.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/bundlemanagement/BundleHolder.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/UPnPDeviceListener.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/sleep/Sleep.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/ServiceReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/ServiceResource.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/ExportReference.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4b/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/ssdp/SSDPMulticastListener.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZDPFrame.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/CapabilitiesTestCase.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/TransactionContext.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/extensions/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb17/NativeCodeFragment.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/client/ColorProviderClient.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/CollectionSetDelegate.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeBaseDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/impl/ColorProviderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/SimpleTransactionManagerTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClassAdd99.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/PrototypeServiceFactory.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/FailedPromiseImpl.java | [] | [] |
/src/osgi/org.osgi.service.jdbc/src/org/osgi/service/jdbc/DataSourceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/FilterStructureTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/junit/SecureTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet.secure/src/org/osgi/test/cases/servlet/secure/junit/BaseHttpWhiteboardTestCase.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/EnOceanHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/servicereferencegetter/TestResult.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/dynpkgimport/DynPkgImportTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/Subscription.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/AbstractCollectionDelegate.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/AsyncTypes.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ConfigurationPlugin.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/DeviceException.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/TxControlTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14f/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/SubscriptionCheck.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/radio/Message4BS.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/control/SOAPMaker.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTDirObjectFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/junit/MainTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/MetaTypeTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetChildNodeNames.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetDefault.java | [] | [] |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/ComponentServiceObjects.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/BundleContextBean.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeFrequencyBandImpl.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.metatype.annotations/src/org/osgi/impl/bundle/metatype/annotations/DesignateComponent.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ManagedService.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/SimplePushEventSource.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/Base64.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/B.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/RequestedStartLevel.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb10/Component1.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/TextFileSupport.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/BundleManifestVersionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorOperationsTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/Utils.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedBooleanControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb12/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeHostImpl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap40.java | [] | [] |
/src/osgi/org.osgi.test.cases.pushstream/src/org/osgi/test/cases/pushstream/junit/PushStreamIntermediateOperationTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb7/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb16/ConfigurationPID.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/xpath/BaseElement.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb3/BeanImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetValidNames.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ZigBeeTestCases.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/CollectionDelegate.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev4/BasicDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb1/NormalLifecycle.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/register/IServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.component.annotations/src/org/osgi/test/cases/component/annotations/junit/DS15AnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv2/CommonDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb1/impl/ServiceProviderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb1/ConsumerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/NullFailureReasonTest.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/EndpointDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/BaseService.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/Converter.java | [] | [] |
/src/osgi/org.osgi.test.cases.bundle.annotations/src/org/osgi/test/cases/bundle/annotations/junit/AnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactoryBuilder1/ObjectFactoryBuilder1Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/UPnPController.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/OverlappingSubtreeDataPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/AbstractFeatureExtensionAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/client/ColorProviderClient2.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/CommonTxLifecycleTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/fragments/tb16a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/junit/impl/MyServiceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/serialization/BaseSerialize.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/FunctionDataTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/filter/tb1/InstallServices.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/registerModify/IServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/Bug1852Test.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/TransactionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT5/BundleT5Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ZigBeeControlTestCase.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushStreamBuilderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/enumvalues/EnOceanChannelEnumValue3.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/EnOceanMessage.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb4/BrokenStream.java | [] | [] |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb3/SimpleDocumentBuilderFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ReflectionUtils.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData64.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/ManagedServiceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/PersistenceManager.java | [] | [] |
/src/osgi/org.osgi.test.cases.log.launch/src/org/osgi/test/cases/log/launch/junit/LogLaunchTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb7/TestEERequirements.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb13/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/FrameworkOperationsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/service/TBCService.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/SimplePushEventSourceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/RequestProcessor.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/ManagedServiceFactoryImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/Execute.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/ErrorCheck.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/MAP.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1l/PrototypeFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/UPnPBundleActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/AbstractFunctionTest.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/bundle/FindHook.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb14/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/ReadOnlyDS.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTInitialDirContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb3/ConfigurationBeanB.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/ExtensionLifecyleTestCase.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/LIST.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/util/TypeConverter.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/serviceregistry/export/ReferenceProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPrincipalPermission/HashCode.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/Commit.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/messages/MessageSYS_EX.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb4/Activator.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/monitor/DiskStorageMonitor.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FiltersPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/tests/TestJNDISecurity.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/Wire.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLCommandResponse.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureExtensionBuilder.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/EnOceanChannelEnumValue.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/ExecPlugin/TestMetaNode.java | [] | [] |
/src/osgi/org.osgi.util.tracker/src/org/osgi/util/tracker/ServiceTracker.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/ResolverTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1732_MountPluginEventing.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptors/ZigBeeFrequencyBandImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetMax.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger48.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/BundleImportPackageTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/RoleImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/SetNodeTitle.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/Hashcode.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/service/ExampleServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/Test152_2.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClassAdd8.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/dirObjectFactory1/DirObjectFactory1Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb32/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetMin.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtEvent/DmtEventConstants.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/JSONObject.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/TransactionManagerTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/AdMinOnlyR6Test.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetExtensionProperty.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/channels/Channel03.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/AsyncTestCase.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/Opt.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/UAProperties.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/monitor/TypedEventMonitor.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushEventSource.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/IAENegativeTimeoutTest.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/residential/Framework.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/MultiReleaseJarTestCase.java | [] | [] |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/BundleSignerCondition.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/util/teststep/TestStepForZigBeeImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/DynamicScalarFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb1/AbstractSAXParserFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/weaving/tb2/SymbolicNameVersion.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/adapt/Activator.java | [] | [] |
/src/osgi/org.osgi.service.networkadapter/src/org/osgi/service/networkadapter/NetworkAddress.java | [] | [] |
/src/osgi/org.osgi.test.cases.bundle.annotations/src/org/osgi/test/cases/bundle/annotations/junit/HeaderAnnotationsTestClass.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/setPermission/SetPermissionActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/NullParticipantTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/IsLeafNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/OrphanedCoordinationTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/CapabilityTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/service/SomeService.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureArtifact.java | [] | [] |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/UrlHandlerControl.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/monitor/RangePolicy.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeFloatingDouble.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb3/Reinstall.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/util/Base64.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tbextension/TbExtension.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/tb11/TBActivator.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/NotificationServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/TestStepLauncher.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb4/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb3f/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb2/BeanImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/CdiExtenderTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/MountPointImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/TC1_ResourceContextCreationRelatedTestCases.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/messages/MessageExample2.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClassBase.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb1/TBActivator.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ConfigurationEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/serviceclient/ColorProviderClient.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ServiceProxyInfo.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1g/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb9/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.serial/src/org/osgi/impl/service/serial/SerialDeviceManager.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FrameworkPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/channels/LChannel.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptors/ZigBeePowerDescriptorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/services/ServiceBundleScope.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/MetaData/TestPluginMetaData.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb29/Activator.java | [] | [] |
/src/osgi/org.osgi.service.device/src/org/osgi/service/device/DriverSelector.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/TestSet.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTInitialContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1i/BundleFactory.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/LocalResource.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/notification/spi/RemoteAlertSender.java | [] | [] |
/src/osgi/org.osgi.service.coordinator/src/org/osgi/service/coordinator/Coordinator.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/TC3_ResourceContextBundleManagementTestCases.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtAdminCore.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/radio/MessageSYS_EX.java | [] | [] |
/src/osgi/org.osgi.service.metatype/src/org/osgi/service/metatype/AttributeDefinition.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/junit/DS15TestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/JakartarsServiceRuntimeTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ConfigPid.java | [] | [] |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/junit/TypedEventMonitorIntegrationTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/SharedMountPointTest.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/admin/LoggerAdmin.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/ReadWriteDataSession.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/selectors/DriverLoadingTestSelector1.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb22/ServiceComponent.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/descriptions/ZCLGlobalClusterDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptors/ZigBeeNodeDescriptorImpl.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/connect/FrameworkUtilHelper.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/registerPlural/IServicePluralImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/parser/XMLParser.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Others/OverlappingPlugins.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb20/ScopedServiceComponent.java | [] | [] |
/src/osgi/org.osgi.service.event/src/org/osgi/service/event/EventAdmin.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/basedriver/UPnPServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/ExportTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClassAdd100.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/Delayed.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/Icon.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/serviceregistry/export/TestService.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/TW6Test.java | [] | [] |
/src/osgi/org.osgi.service.packageadmin/src/org/osgi/service/packageadmin/PackageAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb7a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb4b/ImportGone.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/Copy.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/event/EventSender.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/dependency/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb1/BeanImpl.java | [] | [] |
/src/osgi/org.osgi.service.device/src/org/osgi/service/device/Driver.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw5/servlet/BundleContextTestServlet.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/BundleResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigReadOnlySession.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/NameMappingComponent14.java | [] | [] |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/junit/LoggerFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/control/UnscopedTxControl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger32.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/FrameworkStartLevelPojo.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZCLClusterImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb4/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/channels/Channel01.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/Interrupter.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPService.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/junit5/AbstractOSGiTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/AclConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/exporter2/ExporterActivator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZCLCommandDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb19/ScopedServiceComponent.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/RootPlugin.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/ExportRegistration.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb14/Comp.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/junit/BundleTrackerTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/activationpolicy/SyncEventListenerTestResults.java | [] | [] |
/src/osgi/org.osgi.service.event/src/org/osgi/service/event/EventHandler.java | [] | [] |
/src/osgi/org.osgi.impl.service.jdbc/src/org/osgi/impl/service/jdbc/Activator.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ArrayDelegate.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/resources/PoisonXAResource.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/OSGiURLContextFactoryServiceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/security/SomePermission.java | [] | [] |
/src/osgi/cnf/src/SignatureTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/junit/RestJSClientTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.usbinfo/src/org/osgi/test/cases/usbinfo/util/TestServiceListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb5/Activator.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ManagedServiceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/StringResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/Dispatcher.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/XATxControlTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/junit/EventAdminTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tbf1/impl/MultipleReferenceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb3/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet.secure/src/org/osgi/test/cases/servlet/secure/tb1/HttpWhiteboardSecurityTestBundle1.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/NotificationService/SendNotification.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/plugins/TestDataPlugin.java | [] | [] |
/src/osgi/templates/org.osgi.test.cases.template/src/org/osgi/test/cases/template/junit/TemplateTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/ResolveOnCancelTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/DeviceUtil.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/ExtensionList.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/DeviceTest.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger56.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/targetb2/Target2Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/JSONArray.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/DefaultRemoteAlertSenderActivator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZCLParameterDescription.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/SSDPComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTNameClassPairEnumeration.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/utils/Fixtures.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/ClassMemberComponent.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeFloatingSemi.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/BundleWebContextPathTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/utils/ByteSerializable.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/parser/XMLTag.java | [] | [] |
/src/osgi/org.osgi.test.cases.useradmin/src/org/osgi/test/cases/useradmin/junit/UserAdminControl.java | [] | [] |
/src/osgi/org.osgi.service.rest/src/org/osgi/service/rest/client/RestClientFactory.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/LogListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/HighestRankingRemoteAlertSenderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptors/ZigBeeSimpleDescriptorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/serial/TrivialByteSerializable.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/TransactionTestBundleControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/EntityManagerFactoryJPAProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/ConsumerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/plugins/Node.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/UnhandledEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FrameworkPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/servicereferencegetter/ServiceReferenceGetter.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/BundlePojo.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/junit/CustomizedConversionComplianceTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/CustomUrlConnection2.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/control/SOAPErrorCodes.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb6/BcNS100.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/resolver/tb1/Test.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest.client/src/org/osgi/impl/service/rest/client/RestClientImpl.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ConfigPolicyOptional.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/AsyncTestUtils.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/DefaultRemoteAlertSenderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb20/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/MultiFrameworkTestCase.java | [] | [] |
/src/osgi/org.osgi.service.prefs/src/org/osgi/service/prefs/Preferences.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb2/impl/ServiceConsumerLookupImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/MultiFrameworkTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/impl/EnOceanHostImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/impl/EnOceanHostTestImpl.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureConfiguration.java | [] | [] |
/src/osgi/org.osgi.test.cases.configurator/src/org/osgi/test/cases/configurator/junit/ConfiguratorInitTestCase.java | [] | [] |
/src/osgi/org.osgi.service.cdi/src/org/osgi/service/cdi/runtime/CDIComponentRuntime.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb1/SPImpl.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServiceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/utils/FakeResourceMonitorFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTTestObject.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLHeader.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/ServiceInfo.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/FrameworkStartLevelResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/MyGenericInterface.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/CreateInteriorNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb10/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertPermission/Implies.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData8.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/junit/ServiceLoaderTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17g/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16c/Activator.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/Version.java | ['CoreVersionFuzzer'] | ['CoreVersionFuzzer'] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/WireAdminControl.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/service/EventListenerHook.java | [] | [] |
/src/osgi/org.osgi.test.cases.serial/src/org/osgi/test/cases/serial/junit/SerialDeviceTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/junit/TopicPermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb3/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/RemoteServiceAdminExportTest.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/TransactionalDataSession.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/Bug2487R6Test.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/EnOceanChannelDescriptionSet.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialDirContextFactoryBuilder1/InitialDirContextFactoryBuilder1Activator.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/decorator/DecoratorBuilderFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/common/SynchronizerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT4/BundleT4Activator.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/TypedEventPublisher.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/NodeChanged.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/TC4_ResourceMonitorTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.log.stream/src/org/osgi/test/cases/log/stream/junit/LogStreamTest.java | [] | [] |
/src/osgi/org.osgi.service.url/src/org/osgi/service/url/URLStreamHandlerService.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetNodeType.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/impl/ColorProviderImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/shared/Util.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ReferenceService.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/ResidentialPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/A.java | [] | [] |
/src/osgi/org.osgi.service.resolver/src/org/osgi/service/resolver/ResolveContext.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtData/DmtData.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/DevicePermission.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/util/UPnPException.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb18/EventMethods.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactory1/InitialContextFactory1Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/SubscriptionAlive.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/ThresholdPushbackPolicy.java | [] | [] |
/src/osgi/org.osgi.test.cases.onem2m/src/org/osgi/test/cases/onem2m/junit/ServiceLayerTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/reader_noperm/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/AdMaxOnlyR6Test.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/EnOceanBundleActivator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/signature/PoolEntry.java | [] | [] |
/src/osgi/org.osgi.util.function/src/org/osgi/util/function/Predicate.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/ExecPlugin/TestExecPlugin.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/ServiceRepresentationsResource.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeDataInput.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/SimpleUserTransactionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/tb1/A.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/DmtAdminTestCase.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/Util.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/HelloWorld15.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/wiring/EqualsHashCodeTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17i/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb7c/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtData/TestDmtDataExceptions.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/JsonTokenizer.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/Close.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/ConnectTests.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/monitor/ThreadMonitor.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/event/ZCLCommandResponseImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/services/ServiceSingletonOne.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/HeuristicTest.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPEventListener.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeLinkQuality.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/services/MyService.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/junit/AbstractTestCase.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/CapabilityPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb6d/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1a/ImmediateSingle.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeHost.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/Configuration.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ZigBeeMacCapabiliyFlags.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/VersionRange.java | ['CoreVersionRangeFuzzer'] | ['CoreVersionRangeFuzzer'] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb7f/TestClass.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/CdiEventObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/JDBCResourceTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet.secure/src/org/osgi/test/cases/servlet/secure/tb2/HttpWhiteboardSecurityTestBundle2.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb2/PojoImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb15/NativeCodeFilterNoOptional.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tbf1/impl/TypeReferenceTestImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/interfaces/FieldInjectedReference.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/RMTRootNodeTestCase.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/BundleActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/TestMetaNode.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/PropertyMetadataImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/BooleanSensorTest.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/InstalledFeature.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/bundlemanagement/BundleManager.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/AsyncJava8Types.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/InstalledBundle.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/channels/FloatChannel1.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/exporter/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/HighestRankingRemoteAlertSenderActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/EventTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/AuthenticationTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1/One.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/nouses/ExportNousesProviderType.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DmtConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb1/TB1Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/TestBundleControl.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/BundleHeaderResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/OverlappingDataPlugin.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/jpa/JPAEntityManagerProviderFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/Update.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/util/IService2.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtAdminFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/NPEMapper.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb26/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb25/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest.client/src/org/osgi/impl/service/rest/client/Activator.java | [] | [] |
/src/osgi/org.osgi.service.packageadmin/src/org/osgi/service/packageadmin/ExportedPackage.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/junit/ServiceLoaderSecureTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/simulator/DeviceSimulator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/junit/FrameworkLaunchTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb1a/SomeServiceImpl.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/Authorization.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb30/NoTargetReferenceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/CloseableJNDIContextManager.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/Logger.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/div/tb2/NativeCode.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/ssdp/SSDPParser.java | [] | [] |
/src/osgi/org.osgi.service.jndi/src/org/osgi/service/jndi/JNDIContextManager.java | [] | [] |
/src/osgi/org.osgi.service.metatype/src/org/osgi/service/metatype/MetaTypeService.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/RemoveEndedCoordFromStackTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb24/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/AbstractResolverTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactory3/InitialContextFactory3Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb11/Activator.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/weaving/WovenClassListener.java | [] | [] |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/TrackingInvocationHandler.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/Meter.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/BundleCapability.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/devices/EnOceanDeviceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/utils/Utils.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb8/ContExp.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/AbstractDeviceTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/util/TestServiceListener.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeRoute.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype.annotations/src/org/osgi/test/cases/metatype/annotations/junit/MetatypeAnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/BuilderUtils.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/service/EventHook.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb5/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/LaunchTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring.fakemonitors/src/org/osgi/impl/service/resourcemonitoring/fakemonitors/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb1/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/EventCollector.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/impl/ShapeProviderImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/ArgumentList.java | [] | [] |
/src/osgi/org.osgi.service.metatype/src/org/osgi/service/metatype/ObjectClassDefinition.java | [] | [] |
/src/osgi/org.osgi.service.jpa/src/org/osgi/service/jpa/EntityManagerFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/SecurityAwareJNDIContextManagerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/serviceregistry/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/utils/Logger.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/CoordinationPermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/validate/BundleManifestValidator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ExecPlugin/TestExecPlugin.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/OSGiInitialContextFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeEventImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/TestClassResultImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/DeleteNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/OverlappingSubtreeDataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv7/StandAloneDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/Participator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/ReadWriteDS.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBag.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1735_ScaffoldMetaData.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/Can.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb25/ComponentServiceObjectsReceiver.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/SubscriptionRenew.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData32.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17h/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/AdMinMaxR6Test.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb5/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT6/BundleT6Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw4/servlet/TestServlet4.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb30/MultipleReferenceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/condition/GetConditionActivator.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/monitor/SocketMonitor.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/AbstractSpecifying.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/BuilderSupportedInitialContextFactory.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/NoInheritService.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb21/MinimumCardinalityServiceReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb15/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/TestPluginReadableDataSession.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLCluster.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/JSONLong.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptions/ZCLCommandDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/WireAPITestProducerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/utils/Utils.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb7h/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/AbstractTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/permissions/FilteredTestControl.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/repository/ArtifactRepositoryFactory.java | [] | [] |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/ConditionalPermissionUpdate.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb7/ConfigurationBeanF.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb6/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactory3/ObjectFactory3Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/TestMetaNodeDataPlugin.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/Description.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/wiring/WiringTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/common/ConfigurationListenerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/EnOceanChannelDescription1.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/plugins/MultiRootDataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/PreprocessorTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/targetb1/Target1Activator.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/dmt/TreeSummary.java | [] | [] |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/junit/EventsIntegrationTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1/Two.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertPermission/HashCode.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16c/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/CapabilityTestCase.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/WirePermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/AbstractJakartarsTestCase.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeException.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1f/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/step/TestStepDeviceProxy.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/StringReplacerFeature.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/AndExpression.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb21/NativeCodeVersion.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16f/Activator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/tracker/Tracker.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17d/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/Test152_3_1_1.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb1a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/Instance_ServiceReference.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/data/AlarmDataTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/exports/listener/ServiceListenerTester.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClass99.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/Test152_3.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClass8.java | [] | [] |
/src/osgi/org.osgi.impl.service.serial/src/org/osgi/impl/service/serial/TestStepImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/mock/MockServlet.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1j/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClassAdd99.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw1/SimpleUserBean.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/Predicates.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushStream.java | [] | [] |
/src/osgi/org.osgi.service.clusterinfo/src/org/osgi/service/clusterinfo/ClusterTagPermission.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceMonitorFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/SIUnitsTest.java | [] | [] |
/src/osgi/org.osgi.util.converter/test/org/osgi/util/converter/UtilTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/interfaces/Pojo.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/TW4Test.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/util/Hex.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb13/ModifyRegistrator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/plugins/MetaNode.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeNodeImpl.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/BundleEventCollector.java | [] | [] |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/ComponentContext.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb10/TestServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16b/Activator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/version/Versions.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/service/ServiceRegistryTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/impl/BasicTypesTestServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/junit/SimpleTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/export/TestStateVariable.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/MyGenericInterfaceOptional.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/ControlAction.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/MyGenericInterfaceWithVariables.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPStateVariable.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/SimpleSynchronization.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtAdmin/AddEventListener.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPLocalStateVariable.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb27/NamedService.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/rasterizer/Rasterizer.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeEnumeration16.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/LogMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/service/ConditionalTBCService.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/InitialBundleStartLevel.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBACnet.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/ConfigurationAwareResource.java | [] | [] |
/src/osgi/org.osgi.service.onem2m/src/org/osgi/service/onem2m/OneM2MException.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPermission/HashCode.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb5/ConfigurationBeanC.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServiceEvent.java | [] | [] |
/src/osgi/org.osgi.impl.service.serial/src/org/osgi/impl/service/serial/Activator.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/TransactionControl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger48.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/EndpointPermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/junit/RestServiceJSONTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/sharedpackage/SharedPackage.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/interfaces/BundleScoped.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/connect/ConnectFrameworkFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/CoercionComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZCLEventListenerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/SSETestCase.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData24.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/AbstractFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/BundleStartLevelResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb5/Activator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeLongCharacterString.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/monitor/MemoryMonitor.java | [] | [] |
/src/osgi/org.osgi.service.permissionadmin/src/org/osgi/service/permissionadmin/PermissionAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/XATest.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/AccessBundleContextTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/services/ServiceSingletonThree.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/TypeRule.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4a/NamedService.java | [] | [] |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/junit/XMLControl.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/BooleanSensor.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/tests/TestServiceIntegration.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/GenaSocket.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/ResourceTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/BundlePermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetMaxOccurrence.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/CustomConverterImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/TC5_ResourceConsumptionEventingTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/CMControl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/StateVariable.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb17a/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/EventService.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/common/TestEventHandler.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/uses/ExportUsesConsumerType.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/AdminPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/exports/service/SomeService.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtAdmin/DmtAdressingUri.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger8.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/hooks/weaving/TestWovenClassListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/permissions/CapabilityPermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/EnOceanBroadcastRPCTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/SseResource.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/xmldoclet/HtmlCleaner.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/ExtensionBundleActivatorTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/shared/ModifyPid.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/activationpolicy/EventListenerTestResults.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger64.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/classpath/ClassPathControl.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/ExtensionsResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/applications/SimpleApplication.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/utils/teststep/TestStepForEnOceanImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/EventServiceImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/encode/Base64.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/resources/EmptyLocalResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/weaving/tb/woven/TestWeavingHook.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.metatype.annotations/src/org/osgi/impl/bundle/metatype/annotations/NoDefaults.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureBundle.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/SimpleRootPref.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/DeviceSimulatorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/tb2/HttpWhiteboardTestBundle2.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/contextsharer/ContextSharerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/ControlServer.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/Rollback.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/BundleWire.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/ScopedWorkException.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/FrameworkDP.java | [] | [] |
/src/osgi/org.osgi.service.url/src/org/osgi/service/url/URLStreamHandlerSetter.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1k/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/AccessControlContextTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/Processor.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/tests/TestObjectFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/TC2_ResourceContextDeletionRelatedTestCases.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/DevicePermissionTest.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZCLSimpleTypeDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZigBeeDataOutputImpl.java | [] | [] |
/src/osgi/org.osgi.service.packageadmin/src/org/osgi/service/packageadmin/RequiredBundle.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/InternalConverting.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/common/ModifiableService.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/inaccessibleBundleContext/InaccessibleBundleContextActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/context/GetBundleByIdTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/FactoryManager.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1670_NewDmtDataTypes.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/basedriver/UPnPDeviceImpl.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/PropertyMetadata.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb5/TB5Activator.java | [] | [] |
/src/osgi/org.osgi.test.filter/src/org/osgi/test/filter/ServiceHooks.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.configurator.secure/src/org/osgi/test/cases/configurator/secure/junit/ConfiguratorSecurityTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPrincipalPermission/Equals.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb15/UpdatedReference.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/IsPermitted.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/filter/tb1/ObjectA.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/control/SOAPConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw1/servlet/BasicTestServlet.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/LogPlugin/LogPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/SetNodeValue.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTNameClassPairEnumeration.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorTR069IntToDmtTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/impl/AsyncTypesImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/junit/NetworkAdapterTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/export/TestBridge.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb8/CheckManifestGetHeaders.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb9/Activator.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZigBeeDataOutput.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/PropertyOrdering14.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb4/BeanImpl.java | [] | [] |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ConfigurationAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/utils/ServiceListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/spi/ColorProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/handler/ExtenderTestEventHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/adaptations/BundleAdaptTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/DataPluginMountPointTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/RemoteServiceAdminSecureTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/control/SOAPMaker.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/ExtensionDependencyTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertItem/ToString.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/ConfigurationPermissionTests.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/UserAdminEvent.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/SecurityUtils.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/LogPlugin/LogMetaNode.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/FunctioningImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/esp/EspPacket.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb35/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/junit/NetworkIfTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetSetNodeAcl.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw5/servlet/ClasspathTestServlet.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/MapDelegate.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/tb1/TBActivator.java | [] | [] |
/src/osgi/org.osgi.impl.service.jdbc/src/org/osgi/impl/service/jdbc/DerbyEmbeddedDataSourceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5a/ServiceListenerTesterImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/LogStructureTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb22/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.bundle.annotations/src/org/osgi/test/cases/bundle/annotations/junit/ExportAnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ComponentPropertyTypes.java | [] | [] |
/src/osgi/org.osgi.util.xml/src/org/osgi/util/xml/XMLParserActivator.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/BundleStateResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/tb1/LogBundle1.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger16.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/resources/GetEntryResourceTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb5/BeanImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/service/ContextSharer.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetRawFormatNames.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/BundleSymbolicNameTest.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/repository/ArtifactRepository.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/launch/Framework.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/CapabilityTestCase.java | [] | [] |
/src/osgi/org.osgi.resource/src/org/osgi/resource/Resource.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/impl/MyServiceAsyncDelegate.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetSetNodeTitle.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb3/impl/DefaultBindImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/listener/ServiceListenerTester.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/tests/TestInitialContextFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb1a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/mock/MockSCL.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceEvent.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/service/ServiceExceptionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1d/SingletonSingle.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTObjectFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/descriptors/ZigBeePowerDescriptorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/EnOceanBasicTestCase.java | [] | [] |
/src/osgi/org.osgi.resource/src/org/osgi/resource/Wiring.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZCLFrameRaw.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/MultipleFieldTestService.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/RuntimeConfigurationMerge.java | [] | [] |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/ConditionInfo.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/SecurityAwareJNDIProviderAdminImpl.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/security/DmtPrincipalPermission.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/SSDPMulticastListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/MultiLevelSensorTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/junit/EventsFromFrameworkTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/SetPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigReadWriteSession.java | [] | [] |
/src/osgi/licensed/docflex-doclet/demo/java4/BulletIcon.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/tb1/TestFilter.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/junit/ConditionalTestControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb3/TestServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/CommonTxContextCallbacksTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/spi/ColorProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.component.annotations/src/org/osgi/test/cases/component/annotations/junit/DescriptionXPathAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/junit/TypedEventBusInputValueTest.java | [] | [] |
/src/osgi/org.osgi.service.log.stream/src/org/osgi/service/log/stream/LogStreamProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/ConverterBuilderTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TestDataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb5/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/ct/ctURLContextFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/configuration/ZigBeeProfiles.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb8/StoppedBC.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/ContextInjectedWhiteboardResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/services/ServiceSingletonTwo.java | [] | [] |
/src/osgi/org.osgi.impl.service.serial/src/org/osgi/impl/service/serial/SerialDeviceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb9a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/intf/InteriorMetaNode.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZCLClusterDescription.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/xmlvalidation/XmlValidator.java | [] | [] |
/src/osgi/org.osgi.service.clusterinfo/src/org/osgi/service/clusterinfo/NodeStatus.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/TreeStructure/Configuration.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/ConfigurationPluginTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/TW1Test.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/SimulatedFunction.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/AbstractPushStreamImpl.java | [] | [] |
/src/osgi/org.osgi.service.async/src/org/osgi/service/async/delegate/AsyncDelegate.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedKeypad.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServicePermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClass99.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb6/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/UserImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/services/AnotherService.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/RemoteServiceAdminEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/Util.java | [] | [] |
/src/osgi/osgi.specs/src/org/osgi/tools/xmldoclet/XmlDoclet.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/OperationMetadata.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/FrameworkLifecycle.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetNodeSize.java | [] | [] |
/src/osgi/org.osgi.service.jakartars/src/org/osgi/service/jakartars/client/SseEventSourceFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5c/AllServiceListenerTesterImpl.java | [] | [] |
/src/osgi/org.osgi.service.device/src/org/osgi/service/device/DriverLocator.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/description/Hex.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ZCLDataTypesTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/descriptors/ZigBeeSimpleDescriptorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/bundle/BundleHookTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/syncbundlelistener/tb1b/PermissionTester.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLReadStatusRecord.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/tb10/TestPermission.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring.fakemonitors/src/org/osgi/impl/service/resourcemonitoring/fakemonitors/FakeMonitor.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/weaving/tb/weaver/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/FieldInjectedPrototypeScopedImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/GenaEventListener.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/connect/ConnectContent.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/junit/ClusterInfoTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/CMCoordinationTestCase.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/jdbc/JDBCConnectionProviderFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/ConverterCollectionsTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/SendRenewal.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/References.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceContextListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb2/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb8/ContainerBean.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/PersistencyTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/get/GetActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetNodeSize.java | [] | [] |
/src/osgi/org.osgi.test.cases.serial/src/org/osgi/test/cases/serial/util/TestSerialEventListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.bundle.annotations/src/org/osgi/test/cases/bundle/annotations/junit/CapabilityAnnotationsTestClass.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/DeferredPromiseImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/AbstractFeatureIDAssert.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1i/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal.step/src/org/osgi/impl/service/dal/step/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/JNDIContextManagerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestClass101.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/SamsungUPnPStateVariable.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/AbstractActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/MetaData/TestPluginMetaDataActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/junit/RestTestUtils.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/Filter.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/DmtSessionConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZigBeeEventImpl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeBitmap64.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/UserTransactionFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/services/ServiceSingletonFour.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/common/A.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/syncbundlelistener/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jpa/src/org/osgi/test/cases/jpa/junit/CapabilitiesTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/services/MyService.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/ServiceExceptionTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/ExtensionBundleTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/testcond/TestConditionRecursive.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/hooks/weaving/export/TestConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb3a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/OSGiTestCaseProperties.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb20/ScopedServiceReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/util/NetworkTestProxy.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/EventHandlerActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/EndpointDescriptionTests.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/EnOceanDataChannelDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/MyBean.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/junit/MapInterfaceJavaBeansDTOAndAnnotationConversionComplianceTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb10/TestService.java | [] | [] |
/src/osgi/org.osgi.service.clusterinfo/src/org/osgi/service/clusterinfo/FrameworkManager.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/HelloWorld11.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/discovery/DiscoveryMsgCreator.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev0/BasicDevice.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/basedriver/UPnPActionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/AnnotationMemberComponent.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPIcon.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/OverlappingExecPlugin.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/export/DmtPrincipalPermissionAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1a/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/tb2/ObjectClassDefinitionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/Test152_3_1.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/junit/RestTestUtils.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/lifecycle/TestBundleControl.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/util/Logger.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/ComponentEnabler.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb7c/Activator.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/Deferred.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/CapabilityPermissionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/EventTestConsumer.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1b/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/EventsTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/LogPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb5/ProducerImpl.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ListDelegate.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushStreamBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/resources/EmptyXAResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb9/ContainerReferenceEventHandler.java | [] | [] |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/WireAdmin.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedMeter.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb6/ContExp.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/SubscriptionAlive.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/tests/TestURLContextFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.pushstream/src/org/osgi/test/cases/pushstream/junit/PushStreamComplianceTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/intf/BaseMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv4/WinnerDriver.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/XAExceptionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/FilterTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/configuration/ZigBeeProfiles.java | [] | [] |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb4/TB4Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/GetChildNodeNames.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb19/Activator.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/ExecPlugin.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/validate/ManifestPackage.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.metatype.annotations/src/org/osgi/impl/bundle/metatype/annotations/DesignateFactoryComponent.java | [] | [] |
/src/osgi/org.osgi.impl.service.serial/src/org/osgi/impl/service/serial/SerialEventManager.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/junit/PermissionSignatureUtility.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb4/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/GenaConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb4/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/control/TransactionTxControl.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/ServiceListResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/DynamicNonVolatileFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/ComponentFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/junit/EventAdminTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/data/KeypadData.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/tb4/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/ComponentContextExposer.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/resources/PoisonLocalResource.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/MappingListener.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeArray.java | [] | [] |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb3/SimpleSAXParserFactory.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/admin/LoggerContext.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZCLHeaderImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/descriptions/ZCLParameterDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeDataInputImpl.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/PromiseImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4d/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tb1/pkg1/TestInterface.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/BufferBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/CustomContentHandler1.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/Feature.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtAdminActivator.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/SharedMountPointMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestScaffoldOperations.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb18/EnablerProvider.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServiceRegistration.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/TestControlR6.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/frameworkutil/BundleReferenceTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14a/Activator.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ServiceObjects.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetSetNodeType.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/CommonTxClientExceptionTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet.secure/src/org/osgi/test/cases/servlet/secure/junit/SecureTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigPlugin.java | [] | [] |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/Work.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/dirObjectFactoryBuilder1/DirObjectFactoryBuilder1Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/CreateInteriorNode.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/Action.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/CustomUrlHandler1.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/EnOceanChannel.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/HelloWorld10.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/div/ManifestLocalizationTests.java | [] | [] |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/InstalledConfiguration.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/CreateLeafNode.java | [] | [] |
/src/CoreVersionRangeFuzzer.java | ['CoreVersionRangeFuzzer'] | ['CoreVersionRangeFuzzer'] |
/src/osgi/org.osgi.service.networkadapter/src/org/osgi/service/networkadapter/NetworkAdapter.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/InvalidPreferencesFormatException.java | [] | [] |
/src/osgi/org.osgi.service.servlet/src/org/osgi/service/servlet/context/ServletContextHelper.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb7g/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb16b/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertPermission/Equals.java | [] | [] |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/MultiLevelControl.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/BundleEvent.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/AbstractOSGiResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/LogPlugin/Splitter.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tb1/pkg2/TestInterface2.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/weaving/tb/weaver/TestWeavingHook.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger40.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ResourceContextEvent.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/BundleListener.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZCLGlobalClusterDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb21/ServiceComponent.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/ConverterMapTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtException/DmtException.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/MethodInjectedService.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTInitialContextFactory.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/connect/ConnectModule.java | [] | [] |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/Rule.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3/One.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/UPnPListener.java | [] | [] |
/src/osgi/org.osgi.service.coordinator/src/org/osgi/service/coordinator/Participant.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/extensions/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/JPAResourceTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/client/ColorProviderClientOSGi.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/version/VersionRangeTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/AdminPermissionTests.java | [] | [] |
/src/osgi/org.osgi.service.prefs/src/org/osgi/service/prefs/BackingStoreException.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/wiring/ImportJavaPackagesTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb12/EventAdminReceiver.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeLongOctetString.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedWakeUp.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb17/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/protocol/service/CseService.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/MountPoint.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/descriptions/ZCLAttributeDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/EventTestProducer.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ZCLDataTypeDescription.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/SetNodeType.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/CdiContainerTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/GetSessionId.java | [] | [] |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/junit/AbstractLogTestCase.java | [] | [] |
/src/osgi/org.osgi.util.tracker/src/org/osgi/util/tracker/BundleTracker.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/RedirectionLocator1.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeCharacterString.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/utils/EventListener.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ZigBeePowerDescriptor.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/ResourceProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/mock/MockSCHFactory.java | [] | [] |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/UPnPDevice.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClassBase.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/BundleManifestHeadersTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/TestStepImpl.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ServiceSingleton.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/Device.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/TestClass101.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb21/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/interfaces/SingletonScoped.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb13a/ModifyRegistrator2.java | [] | [] |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/ExpressionCombiner.java | [] | [] |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/CustomUrlConnection1.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/FilterOperationsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/ServiceFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/plugins/GenericDataPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTNameParser.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/descriptors/ZigBeeNodeDescriptorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/javax/security/auth/x500/X500Principal.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/DmtEventCore.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT3/BundleT3Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/CoordNameBSNFormatTest.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/TraditionalObjectFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeDate.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureConfigurationBuilder.java | [] | [] |
/src/osgi/org.osgi.service.resolver/src/org/osgi/service/resolver/HostedCapability.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/utils/ResourceContextListenerTestImpl.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeSignedInteger64.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1b/ImmediateSingle_C.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptions/ZCLGlobalClusterDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/RedirectionLocator2.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/AbstractPermissionAdminTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/ct/ctURLContextFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/ResourceContextEventNotifier.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/StaticMultipleFieldReceiver.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/NODE.java | [] | [] |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/RemoteServiceAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/DefaultSelectionLocator.java | [] | [] |
/src/osgi/org.osgi.test.cases.serial/src/org/osgi/test/cases/serial/util/SerialTestProxy.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/ArrayAssert.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/Plugin.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUTCTime.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/IDManager.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/ConfigurationTests.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/ssdp/SSDPComponent.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ZigBeeFrequencyBand.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/DeletePermission.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ZCLAttributeInfo.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/Factory.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClassAdd101.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/GenaServer.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/extensions/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb2a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/ServiceWire.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/junit/ConditionResource.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/Immediate.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/common/TestRemoteServiceAdminListener.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/Role.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FiltersPlugin.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1d/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/IntegerServiceProvider.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb7/ProducerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3f/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/junit/ScalarConversionComplianceTest.java | [] | [] |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/TransactionBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/NameBoundWhiteboardResource.java | [] | [] |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/PushStreamProvider.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger32.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPrincipalPermission/DmtPrincipalPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb2/AbstractDocumentBuilderFactory.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/LogEntry.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/UPnPExporter.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb6c/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/classloading/ClassLoadingTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb11/TargetProperties.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/junit/ServiceLoaderServiceClientTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/wiring/FrameworkWiringTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/tests/TestJNDIProviderAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/serviceregistry/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1h/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/junit/CapabilitiesTestCase.java | [] | [] |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/FeatureBundleBuilder.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/signature/SignatureTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/junit/LogReader.java | [] | [] |
/src/osgi/org.osgi.service.cdi/src/org/osgi/service/cdi/reference/BindService.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/common/A.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/DTOUtil.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/CdiBeanTests.java | [] | [] |
/src/osgi/org.osgi.service.metatype/src/org/osgi/service/metatype/MetaTypeInformation.java | [] | [] |
/src/osgi/org.osgi.test.cases.log.launch/src/org/osgi/test/cases/log/launch/tb1/LogTestActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1l/ContextObserver.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/ct/ctURLContext.java | [] | [] |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/ComponentInstance.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/junit/RequirementImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/junit/SignatureResource.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/UPnPEvent.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/ParameterValueImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/protocol/ServiceLayerUtil.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/ControlPoint.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/resources/RecordingLocalResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb30/UnaryReferenceImpl.java | [] | [] |
/src/osgi/cnf/src/Packaging.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tb2/TestClass.java | [] | [] |
/src/osgi/licensed/docflex-doclet/demo/java5/BulletIcon.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ExecPlugin/Execute.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/TestBug1657_CMDependency.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/tb1/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.usbinfo/src/org/osgi/impl/service/usbinfo/USBTracker.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/SimpleTestResource.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb1b/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw4/servlet/TestServlet2.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FiltersReadWriteSession.java | [] | [] |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/discovery/ServicesListener.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/signature/ClassParser.java | [] | [] |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb3/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3e/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/utils/FakeResourceMonitor.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigEntry.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/ConfigurableStringReplacer.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTDirObjectFactory.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/FrameworkMetaNode.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactory2/ObjectFactory2Activator.java | [] | [] |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/Success.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/Converter.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/validate/Validator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/service/SimpleSomeServiceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/BuildingMediatorTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb19/ScopedServiceReceiver.java | [] | [] |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/BundleLocationCondition.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/ManualRegistrationTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb6/TBActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb5/ConfigurationPolicyComp.java | [] | [] |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb2/TBActivator.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/BundleContext.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/LogReadWriteSession.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/channels/Channel02.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/Dispatcher.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/service/ServiceScopesTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/TestWireAdminListener.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger8.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ConfigPidMultiple.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/XAResourceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb3/CauseFrameworkEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb3/ConfigurationBeanA.java | [] | [] |
/src/osgi/org.osgi.service.onem2m/src/org/osgi/service/onem2m/NotificationListener.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/dependency/tb2/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/frameworkutil/MatchDNChainTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/FactoryComponentTests.java | [] | [] |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/EnOceanException.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/TestClassAdd8.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb6b/NormalUpdate.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/fragments/tb20/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/MethodCall.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/Bug2487Test.java | [] | [] |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/SimulatedAlarm.java | [] | [] |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/protocol/service/ServiceLayerImplService.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/channels/Channel04.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/adaptions/export/AdaptTestService.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/weaving/tb/woven/Activator.java | [] | [] |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/TypedEventBus.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/data/BooleanDataTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/ServletContextHelperTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/ReadOnly/TestReadOnlyPlugin.java | [] | [] |
/src/osgi/org.osgi.test.cases.jpa/src/org/osgi/test/cases/jpa/junit/PersistenceUnitTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/CoordinatorBasicTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/impl/ShapeProviderImpl2.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/BundleWiring.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZigBeeEventSourceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/PermissionRecursionTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/intf/InteriorNode.java | [] | [] |
/src/osgi/cnf/src/TCKPackaging.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/OSGiBeanDescriptorTests.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/resolver/tb2/Activator.java | [] | [] |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/MutableMAP.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/GetMimeTypes.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/NetworkAdapterImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/devices/Device01.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/dynpkgimport/tlx/TestLib.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/TransactionSynchronizationRegistryTest.java | [] | [] |
/src/osgi/org.osgi.service.cdi/src/org/osgi/service/cdi/reference/BeanServiceObjects.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tlx/TestLib.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/BundleStatePojo.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigPluginException.java | [] | [] |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/DeviceExceptionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/DmtMetaNodeConstants.java | [] | [] |
/src/osgi/org.osgi.test.cases.metatype.annotations/src/org/osgi/test/cases/metatype/annotations/junit/AnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.service.device/src/org/osgi/service/device/Device.java | [] | [] |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/monitor/CPUMonitor.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/TestService99.java | [] | [] |
/src/osgi/org.osgi.test.cases.jpa/src/org/osgi/test/cases/jpa/junit/JPAService_1_1_TestCase.java | [] | [] |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/FunctionData.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/UserTransactionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/Conditions.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/SendSubscription.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ServiceUtils.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/LogPlugin/LogPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/utils/Logger.java | [] | [] |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/junit/RepositoryTestBase.java | [] | [] |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/Acl.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/signature/ParserCallback.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/NetworkIfUtil.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb9/HangInStop.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/div/DivTests.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeDefaultSerializer.java | [] | [] |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/service/SenderService.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16h/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ConfigPolicyRequire.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTObjectFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/ExtensionConfig.java | [] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/OSGiTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/export/TestBridge.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZCLFrameRaw.java | [] | [] |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/ServicePojo.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb6/BcNS110.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/control/TestTransactionControl.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ServiceInvocationHandler.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/Framework.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ZigBeeDataInputImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/junit/Feature_Test.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/TB1Service.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ConfigMetaNode.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/JSONString.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16b/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/Activator.java | [] | [] |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/SimplePreferences.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ContextWrapperImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/ManifestHeadersTestBundleControl.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/launch/FrameworkFactory.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ToDmtTestBase.java | [] | [] |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/serialization/LongShortConverter.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/CTReference.java | [] | [] |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/NetworkAddressImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/TR069ConnectorImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb17g/Activator.java | [] | [] |
/src/osgi/org.osgi.service.serial/src/org/osgi/service/serial/SerialEvent.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPermission/DmtPermission.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/OSGiTextMimeTypeCodec.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/Instance_ServiceProperties.java | [] | [] |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/encode/HexBinary.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeUnsignedInteger40.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/IsNodeUri.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/FinalFieldReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17a/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb24b/SomeServiceBuilder.java | [] | [] |
/src/osgi/org.osgi.resource/src/org/osgi/resource/Wire.java | [] | [] |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/UserAdmin.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeEndpointImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/EntityManagerFactoryBuilderJPAProviderFactoryTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/reader/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/FrameworkLaunchTests.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/user/ExportProviderType.java | [] | [] |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ZCLFrameImplTestCase.java | [] | [] |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/CloseableJNDIProviderAdmin.java | [] | [] |
/src/osgi/org.osgi.test.cases.component.annotations/src/org/osgi/test/cases/component/annotations/junit/DS14AnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/FrameworkListener.java | [] | [] |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/LoggerFactory.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.metatype.annotations/src/org/osgi/impl/bundle/metatype/annotations/SuperInterface.java | [] | [] |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/HelloWorld14.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/Configurable.java | [] | [] |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ZigBeeGeneralData56.java | [] | [] |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/util/Service1.java | [] | [] |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb11/OptionalReference_SC.java | [] | [] |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/testcond/TestPostPonedCondition.java | [] | [] |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/GenaServer.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/descriptors/ZigBeeFrequencyBandImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/LengthyUserTransactionTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/BasicTestLocator.java | [] | [] |
/src/osgi/org.osgi.service.servlet/src/org/osgi/service/servlet/runtime/HttpServiceRuntime.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/ListenerTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/lifecycle/TestBundleControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.component.annotations/src/org/osgi/test/cases/component/annotations/junit/DSAnnotationsTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb10/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/dto/DTOTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/WireAPITestConsumerImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/TR069ConnectorDmtToTR069TestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/CapabilityTest.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TestDataPluginActivator.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/filter/BundleContextFilterTests.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/bundle/EventHook.java | [] | [] |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/Context.java | [] | [] |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb8b/Activator.java | [] | [] |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/CustomUrlHandler2.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ZigBeeSerializer.java | [] | [] |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/mock/MockFilter.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb22/MapReceiver.java | [] | [] |
/src/osgi/org.osgi.test.cases.clusterinfo.secure/src/org/osgi/test/cases/clusterinfo/secure/junit/ClusterInfoSecurityTestCase.java | [] | [] |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb31/OptionalReferenceImpl.java | [] | [] |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/control/NoTransactionTxControl.java | [] | [] |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/CTObjectFactoryBuilder.java | [] | [] |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/enumvalues/EnOceanChannelEnumValue1.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/StartLevel.java | [] | [] |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/AsyncReturnWhiteboardResource.java | [] | [] |
/src/osgi/org.osgi.framework/src/org/osgi/framework/FrameworkUtil.java | ['CoreFilterFuzzer'] | [] |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/wiring/Wiring.java | [] | [] |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/Events.java | [] | [] |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/LogReadOnlySession.java | [] | [] |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/descriptions/ZCLCommandDescriptionImpl.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/EnOceanPacketListener.java | [] | [] |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/radio/Message.java | [] | [] |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ConverterImpl.java | [] | [] |
Directory |
---|
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb1b/ |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb4/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/syncbundlelistener/tb1b/ |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb7c/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb19/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb7/ |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/basedriver/ |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb4/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb10/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb4/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16i/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv4/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/dirObjectFactory1/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1h/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/messages/ |
/src/osgi/org.osgi.service.async/src/org/osgi/service/async/delegate/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/ReadOnly/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb0/ |
/src/osgi/org.osgi.service.metatype/src/org/osgi/service/metatype/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/setallpermission/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16g/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactory2/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb28/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/urlContext1/ |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/utils/teststep/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb3e/ |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/junit/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tbf1/impl/ |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/ |
/src/osgi/org.osgi.service.useradmin/src/org/osgi/service/useradmin/ |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/jpa/ |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tb2/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/tracker/ |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/descriptions/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub2/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1g/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/serviceregistry/export/ |
/src/osgi/dmforest/src/org/osgi/dmt/ddf/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1c/ |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptors/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/syncbundlelistener/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1f/ |
/src/osgi/dmforest/src/org/osgi/dmt/service/log/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb23/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/servicereferencegetter/ |
/src/osgi/org.osgi.test.cases.jpa/src/org/osgi/test/cases/jpa/junit/ |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/junit/ |
/src/osgi/org.osgi.impl.service.networkadapter/src/org/osgi/impl/service/networkadapter/ |
/src/osgi/org.osgi.test.cases.serial/src/org/osgi/test/cases/serial/util/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/syncbundlelistener/tb1a/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb6/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/dynpkgimport/tb0/ |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb3/ |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/security/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/ |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/ |
/src/osgi/org.osgi.test.cases.servlet.secure/src/org/osgi/test/cases/servlet/secure/tb2/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb4/ |
/src/osgi/org.osgi.impl.service.jndi/src/org/osgi/impl/service/jndi/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb27/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/adaptations/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16f/ |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/tb3/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb5/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/wiring/ |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT3/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/ |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/data/ |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/ct/ |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/junit/ |
/src/osgi/org.osgi.service.jdbc/src/org/osgi/service/jdbc/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/enumvalues/ |
/src/osgi/licensed/docflex-doclet/demo/java5/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/tb10/ |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/fragments/tb18/ |
/src/osgi/org.osgi.test.cases.clusterinfo.secure/src/org/osgi/test/cases/clusterinfo/secure/tb/ |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/nodes/ |
/src/osgi/org.osgi.impl.bundle.metatype.annotations/src/org/osgi/impl/bundle/metatype/annotations/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/junit4/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4b/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/service/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb26/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17e/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactory3/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb18/ |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/functions/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb17a/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16h/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb2a/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb1/ |
/src/osgi/org.osgi.test.cases.prefs/src/org/osgi/test/cases/prefs/junit/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb3/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb4/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/ExecPlugin/ |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/factories/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/TreeStructure/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/log/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw4/servlet/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb11/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/selectors/ |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/export/ |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/monitor/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/beans/ |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/parser/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/adaptions/ |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/esp/ |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/client/ |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/protocol/service/ |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/tb1/ |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/types/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/service/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb3/ |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/handler/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb12/ |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/util/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPermission/ |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/spi/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb1a/ |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/impl/ |
/src/osgi/org.osgi.service.networkadapter/src/org/osgi/service/networkadapter/ |
/src/osgi/org.osgi.util.tracker/src/org/osgi/util/tracker/ |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/util/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb8/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactory2/ |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/pojos/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/extensions/tb1/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/ |
/src/osgi/org.osgi.service.jndi/src/org/osgi/service/jndi/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb17/ |
/src/osgi/org.osgi.service.repository/src/org/osgi/service/repository/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16a/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb16/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ConfigurationPlugin/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/interfaces/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv7/ |
/src/osgi/org.osgi.impl.service.residentialmanagement/src/org/osgi/impl/service/residentialmanagement/plugins/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/classloading/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/reader/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb8/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/weaving/tb2/ |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/service/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb2/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/permissions/ |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/tb1/ |
/src/osgi/org.osgi.test.filter/src/org/osgi/test/filter/ |
/src/osgi/org.osgi.util.function/src/org/osgi/util/function/ |
/src/osgi/org.osgi.service.async/src/org/osgi/service/async/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb19/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev4/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/extensions/tb2/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/tb5/ |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb1/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb2/ |
/src/osgi/org.osgi.test.cases.transaction/src/org/osgi/test/cases/transaction/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/resolver/tb2/ |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/fragments/tb16a/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ExecPlugin/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/service1/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/junit/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb1/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb25/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3a/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb3/ |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/junit/ |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/impl/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb12/ |
/src/osgi/cnf/src/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/exporter1/ |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/configuration/ |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/provider/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb3/ |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/discovery/ |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/junit/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/hooks/weaving/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/reader_noperm/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertPermission/ |
/src/osgi/org.osgi.test.cases.configurator.secure/src/org/osgi/test/cases/configurator/secure/junit/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/exports/service/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/rpc/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/common/ |
/src/osgi/osgi.specs/src/org/osgi/tools/dmt/ |
/src/osgi/org.osgi.test.cases.log.launch/src/org/osgi/test/cases/log/launch/tb1/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb13/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb31/ |
/src/osgi/org.osgi.impl.bundle.component.annotations/src/org/osgi/impl/bundle/component/annotations/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb3/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/tests/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4g/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/AlertItem/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb26/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb10/ |
/src/osgi/org.osgi.util.pushstream/src/org/osgi/util/pushstream/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16a/ |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb3/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/security/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb2/ |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/control/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/syncbundlelistener/ |
/src/osgi/org.osgi.service.packageadmin/src/org/osgi/service/packageadmin/ |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb3/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/registerPlural/ |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/control/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14a/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb7h/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4/ |
/src/osgi/org.osgi.service.event/src/org/osgi/service/event/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb7h/ |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/uses/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev0/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5a/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb11/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/junit/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv6/ |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/services/ |
/src/osgi/org.osgi.dto/src/org/osgi/dto/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16b/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/configuration/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/devices/ |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/radio/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1l/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/wiring/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb24c/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb16b/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb5/ |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/dependency/tb2/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/NonAtomic/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/permissions/ |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/tb2/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb23/ |
/src/osgi/org.osgi.service.jakartars/src/org/osgi/service/jakartars/client/ |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptors/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb30/ |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/util/ |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/step/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17g/ |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/junit/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv1/ |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/service/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/get/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb31/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv5/ |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/tb2/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb4b/ |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/ |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/event/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb5/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/bundle/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb6/ |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/export/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb7/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb17g/ |
/src/osgi/org.osgi.service.resolver/src/org/osgi/service/resolver/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb4/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/weaving/ |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/connect/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactory1/ |
/src/osgi/org.osgi.util.converter/test/org/osgi/util/converter/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/weaving/tb/weaver/ |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/notification/ |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/event/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/services/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/log/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/reflect/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb12/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb5/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw1/ |
/src/osgi/org.osgi.service.startlevel/src/org/osgi/service/startlevel/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb27/impl/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb7c/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/setPermission/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb4/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/tb2/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/utils/ |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tbX/ |
/src/osgi/org.osgi.impl.service.tr069todmt/src/org/osgi/impl/service/tr069todmt/encode/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Others/ |
/src/osgi/org.osgi.test.cases.pushstream/src/org/osgi/test/cases/pushstream/junit/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb19/ |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/notification/spi/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev100/ |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/service/ |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb1/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactoryBuilder1/ |
/src/osgi/org.osgi.test.cases.networkadapter/src/org/osgi/test/cases/networkadapter/util/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/junit/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb2/ |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb1/ |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/ |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/tb/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialDirContextFactoryBuilder1/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Constraints/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb15/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb24/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/service2/ |
/src/osgi/org.osgi.test.cases.typedevent/src/org/osgi/test/cases/typedevent/junit/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb9/ |
/src/osgi/org.osgi.service.remoteserviceadmin/src/org/osgi/service/remoteserviceadmin/ |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/user/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/NotificationService/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1b/ |
/src/osgi/org.osgi.impl.service.jdbc/src/org/osgi/impl/service/jdbc/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Plugin/LogPlugin/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT2/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb1/impl/ |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/testcond/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactory3/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/register/ |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ |
/src/osgi/org.osgi.test.cases.dal.secure/src/org/osgi/test/cases/dal/secure/ |
/src/osgi/osgi.specs/src/org/osgi/tools/xmlvalidation/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb8/ |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/control/ |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/ |
/src/osgi/org.osgi.service.cdi/src/org/osgi/service/cdi/reference/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb4/ |
/src/osgi/org.osgi.service.clusterinfo/src/org/osgi/service/clusterinfo/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/mock/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16e/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/tb1/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb17/ |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/dependency/tb3/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/ |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/junit/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb11/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb30/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/junit/ |
/src/osgi/org.osgi.test.cases.jdbc/src/org/osgi/test/cases/jdbc/junit/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb1/ |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/util/ |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/recovery/ |
/src/osgi/org.osgi.service.url/src/org/osgi/service/url/ |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tbextension/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev3/ |
/src/osgi/org.osgi.service.dmt/src/org/osgi/service/dmt/spi/ |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/junit/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/dynpkgimport/exported/ |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/simulator/ |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/serviceclient/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb21/ |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/spi/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/registerModify/ |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/tb1/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/exports/listener/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb5/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb5/ |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb4/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb33/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb10/ |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb1/ |
/src/osgi/org.osgi.impl.bundle.annotations/src/org/osgi/impl/bundle/annotations/export/nouses/ |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/MetaNode/MetaData/ |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb3/ |
/src/osgi/org.osgi.impl.service.resourcemonitoring.util/src/org/osgi/impl/service/resourcemonitoring/util/ |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tb1/pkg2/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/dto/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv3/ |
/src/osgi/org.osgi.test.cases.promise/src/org/osgi/test/cases/promise/junit/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/objectFactory1/ |
/src/osgi/org.osgi.test.cases.metatype.annotations/src/org/osgi/test/cases/metatype/annotations/junit/ |
/src/osgi/org.osgi.test.cases.onem2m/src/org/osgi/test/cases/onem2m/junit/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/wiring/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb14/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/dynpkgimport/ |
/src/osgi/org.osgi.service.cdi/src/org/osgi/service/cdi/runtime/ |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/junit/ |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/config/file/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/serial/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/importer2/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/startlevel/ |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb1/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14h/ |
/src/osgi/org.osgi.test.cases.url/src/org/osgi/test/cases/url/junit/ |
/src/osgi/org.osgi.test.cases.clusterinfo.secure/src/org/osgi/test/cases/clusterinfo/secure/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb12/ |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/control/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/resolver/tb1/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16b/ |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/tb1/ |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/runtime/ |
/src/osgi/templates/org.osgi.test.cases.template/src/org/osgi/test/cases/template/junit/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb7/ |
/src/osgi/org.osgi.service.resourcemonitoring/src/org/osgi/service/resourcemonitoring/ |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/context/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb8a/ |
/src/osgi/org.osgi.test.cases.serial/src/org/osgi/test/cases/serial/junit/ |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb4/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/weaving/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb3/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17d/ |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/ssdp/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb25/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb8b/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/lifecycle/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev20/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/importer/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb21/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb22/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb21/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/resolver/tb2/ |
/src/osgi/org.osgi.service.cm/src/org/osgi/service/cm/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/common/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb2/ |
/src/osgi/org.osgi.service.onem2m/src/org/osgi/service/onem2m/ |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/descriptions/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb16d/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb3/impl/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/service/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/filter/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/plugins/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17h/ |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/data/ |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/basedriver/impl/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/version/ |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb5/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/ |
/src/osgi/org.osgi.service.feature/src/org/osgi/service/feature/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/exports/listener/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb6/ |
/src/osgi/org.osgi.test.cases.configurator/src/org/osgi/test/cases/configurator/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb20/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb7/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/bundle/ |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/applications/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/startlevel/ |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/junit/ |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5c/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/ |
/src/osgi/org.osgi.test.cases.feature/src/org/osgi/test/cases/feature/assertj/ |
/src/osgi/org.osgi.impl.service.dal/src/org/osgi/impl/service/dal/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1i/ |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/export/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtAdmin/ |
/src/osgi/org.osgi.service.component/src/org/osgi/service/component/runtime/ |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb4/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/version/ |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/ |
/src/osgi/org.osgi.test.cases.dal.functions/src/org/osgi/test/cases/dal/functions/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/dynpkgimport/tlx/ |
/src/osgi/org.osgi.service.wireadmin/src/org/osgi/service/wireadmin/ |
/src/osgi/org.osgi.resource/src/org/osgi/resource/ |
/src/osgi/osgi.specs/src/org/osgi/tools/fop/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/Plugins/ |
/src/osgi/org.osgi.service.log.stream/src/org/osgi/service/log/stream/ |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3c/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/map/ |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/junit/ |
/src/osgi/org.osgi.impl.service.async/src/org/osgi/impl/service/async/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb6c/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw1/servlet/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb3/ |
/src/osgi/org.osgi.test.cases.tr069todmt/src/org/osgi/test/cases/tr069todmt/plugins/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17i/ |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/junit/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb5/ |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/junit/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/div/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/string/ |
/src/osgi/org.osgi.impl.service.upnp.cd/src/org/osgi/impl/service/upnp/cd/event/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb35/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb7/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/common/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb1a/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtException/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/compatibility/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb5/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1k/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1e/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/junit5/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb2b/ |
/src/osgi/org.osgi.impl.service.dal.step/src/org/osgi/impl/service/dal/step/ |
/src/osgi/org.osgi.service.zigbee/src/org/osgi/service/zigbee/ |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/client/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb17d/ |
/src/osgi/org.osgi.test.cases.useradmin/src/org/osgi/test/cases/useradmin/junit/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb20/ |
/src/osgi/org.osgi.test.cases.xml/src/org/osgi/test/cases/xml/tb2/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tbnontrusted/ |
/src/osgi/org.osgi.impl.bundle.transaction/src/org/osgi/impl/bundle/transaction/ |
/src/osgi/org.osgi.util.converter/src/org/osgi/util/converter/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/extensions/tb3/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4c/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb7a/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/adaptions/export/ |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/export/ |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb1/ |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/ |
/src/osgi/org.osgi.test.cases.bundle.annotations/src/org/osgi/test/cases/bundle/annotations/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb7/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/xpath/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev2/ |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/TransactionalDataSession/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3f/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb1/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/drv2/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/hooks/weaving/export/ |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/tb1/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb2/ |
/src/osgi/org.osgi.test.cases.usbinfo/src/org/osgi/test/cases/usbinfo/junit/ |
/src/osgi/org.osgi.service.prefs/src/org/osgi/service/prefs/ |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/mock/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb7/ |
/src/osgi/osgi.specs/src/org/osgi/tools/rasterizer/ |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb5/ |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb2/ |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/resources/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/importer1/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb13/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17b/ |
/src/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb16/ |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/description/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb4/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb9/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT6/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb1/ |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/tb11/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb3/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/fragments/tb20/ |
/src/osgi/org.osgi.impl.service.device.manager/src/org/osgi/impl/service/device/manager/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/condition/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/dirObjectFactoryBuilder1/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/javax/security/auth/x500/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/tb1/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/util/teststep/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialDirContextFactory1/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/syncbundlelistener/tb3/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/resolver/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1d/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb8/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb32/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb2a/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb8/ |
/src/osgi/org.osgi.service.tr069todmt/src/org/osgi/service/tr069todmt/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb7f/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/handler/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb13a/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb20/ |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/junit/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtPrincipalPermission/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/tb2/ |
/src/osgi/org.osgi.impl.service.rest.client/src/org/osgi/impl/service/rest/client/ |
/src/osgi/org.osgi.test.cases.repository/src/org/osgi/test/cases/repository/tb1/pkg1/ |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/json/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4f/ |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/inaccessibleBundleContext/ |
/src/osgi/dmforest/src/org/osgi/dmt/residential/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/dev1/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/targetb2/ |
/src/osgi/org.osgi.impl.service.usbinfo/src/org/osgi/impl/service/usbinfo/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17j/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb16/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb6/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5d/ |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/tb2/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb18/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb8/ |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/impl/ |
/src/osgi/org.osgi.test.cases.transaction.control.jpa/src/org/osgi/test/cases/transaction/control/jpa/ |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/resources/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/tb4/ |
/src/osgi/org.osgi.test.cases.log.launch/src/org/osgi/test/cases/log/launch/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4e/ |
/src/osgi/org.osgi.service.coordinator/src/org/osgi/service/coordinator/ |
/src/osgi/org.osgi.service.dal.functions/src/org/osgi/service/dal/functions/ |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/bundlemanagement/ |
/src/osgi/org.osgi.test.cases.resourcemonitoring/src/org/osgi/test/cases/resourcemonitoring/utils/ |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/service/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/junit/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16c/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/connect/test/classes/ |
/src/osgi/org.osgi.test.cases.event/src/org/osgi/test/cases/event/tb2/ |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/junit/mock/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb2c/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/frameworkutil/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb28/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb29/ |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/jdbc/ |
/src/osgi/org.osgi.util.promise/src/org/osgi/util/promise/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/exported/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/service/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17f/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/resolver/tb1/ |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/ |
/src/osgi/org.osgi.test.cases.device/src/org/osgi/test/cases/device/tbc/locators/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb34/ |
/src/osgi/org.osgi.test.cases.jakartars/src/org/osgi/test/cases/jakartars/extensions/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/filter/tb1/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/signature/ |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb5/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/weaving/tb/woven/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/classloading/tb16i/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/serviceregistry/tb1/ |
/src/osgi/org.osgi.service.servlet/src/org/osgi/service/servlet/context/ |
/src/osgi/org.osgi.test.cases.component.annotations/src/org/osgi/test/cases/component/annotations/junit/ |
/src/osgi/org.osgi.util.xml/src/org/osgi/util/xml/ |
/src/osgi/org.osgi.impl.service.upnp.cp/src/org/osgi/impl/service/upnp/cp/ssdp/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb8/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb3a/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1j/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/adapt/ |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb1/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/validate/ |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb2/ |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb21/ |
/src/osgi/org.osgi.impl.service.prefs/src/org/osgi/impl/service/prefs/ |
/src/osgi/org.osgi.test.cases.remoteservices/src/org/osgi/test/cases/remoteservices/common/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb15/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb9/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/junit/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/tw5/servlet/ |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/serialization/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17a/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/impl/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb2a/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14f/ |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/junit/impl/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb1/ |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/tb1/ |
/src/osgi/org.osgi.service.dal/src/org/osgi/service/dal/ |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb2/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb24/ |
/src/osgi/org.osgi.test.cases.zigbee/src/org/osgi/test/cases/zigbee/descriptions/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb9a/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/DataPlugin/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb3e/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tlx/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/exports/security/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT4/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/hooks/service/ |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/ |
/src/osgi/org.osgi.test.cases.resolver/src/org/osgi/test/cases/resolver/fragments/tb3f/ |
/src/osgi/org.osgi.test.cases.event.secure/src/org/osgi/test/cases/event/secure/service/ |
/src/osgi/org.osgi.impl.service.enocean/src/org/osgi/impl/service/enocean/utils/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb7c/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb2/ |
/src/osgi/org.osgi.test.cases.webcontainer/src/org/osgi/test/cases/webcontainer/util/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb1/ |
/src/osgi/org.osgi.test.cases.clusterinfo/src/org/osgi/test/cases/clusterinfo/tb3/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/launch/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtEvent/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb5b/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb17c/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3_1_1a/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/lifecycle/ |
/src/osgi/org.osgi.impl.service.resourcemonitoring.fakemonitors/src/org/osgi/impl/service/resourcemonitoring/fakemonitors/ |
/src/osgi/org.osgi.service.transaction.control/src/org/osgi/service/transaction/control/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb14/ |
/src/osgi/org.osgi.service.log/src/org/osgi/service/log/admin/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/serviceregistry/ |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/junit/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Activators/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/event/ |
/src/osgi/org.osgi.service.jakartars/src/org/osgi/service/jakartars/runtime/ |
/src/osgi/org.osgi.service.device/src/org/osgi/service/device/ |
/src/osgi/org.osgi.service.condpermadmin/src/org/osgi/service/condpermadmin/ |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/ |
/src/osgi/org.osgi.test.cases.async.secure/src/org/osgi/test/cases/async/secure/junit/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb29/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb22/ |
/src/osgi/org.osgi.service.servlet/src/org/osgi/service/servlet/runtime/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb21/ |
/src/osgi/org.osgi.test.cases.serviceloader/src/org/osgi/test/cases/serviceloader/impl1/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/exports/service/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb2/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/shared/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4d/ |
/src/osgi/org.osgi.test.cases.dal/src/org/osgi/test/cases/dal/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4/impl/ |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/repository/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin/src/org/osgi/test/cases/remoteserviceadmin/tb3/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb1/ |
/src/osgi/org.osgi.impl.service.rest/src/org/osgi/impl/service/rest/ |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/junit/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4a/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb10/ |
/src/osgi/org.osgi.test.cases.servlet.secure/src/org/osgi/test/cases/servlet/secure/tb1/ |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/junit/ |
/src/osgi/templates/org.osgi.impl.service.template/src/org/osgi/impl/service/template/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/admin1/ |
/src/osgi/org.osgi.test.cases.log.stream/src/org/osgi/test/cases/log/stream/junit/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/fragments/tb7g/ |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/lock/ |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/services/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/tb9/ |
/src/osgi/org.osgi.test.cases.transaction.control.jdbc/src/org/osgi/test/cases/transaction/control/jdbc/ |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/ext/util/ |
/src/osgi/org.osgi.test.cases.rest.client.js/src/org/osgi/test/cases/rest/client/js/tb2/ |
/src/osgi/org.osgi.test.cases.coordinator/src/org/osgi/test/cases/coordinator/junit/ |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/tb1/intf/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb6b/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/targetb1/ |
/src/osgi/org.osgi.test.cases.condpermadmin/src/org/osgi/test/cases/condpermadmin/tb1/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/weaving/tb1/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/basedriver/descriptors/ |
/src/osgi/org.osgi.test.cases.framework.launch.secure/src/org/osgi/test/cases/framework/launch/secure/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/div/tb2/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactoryBuilder1/ |
/src/osgi/org.osgi.service.rest/src/org/osgi/service/rest/client/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb11/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb4a/ |
/src/osgi/org.osgi.service.permissionadmin/src/org/osgi/service/permissionadmin/ |
/src/osgi/org.osgi.test.cases.serviceloader.secure/src/org/osgi/test/cases/serviceloader/secure/junit/ |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb6/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/fragments/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb4a/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/DmtData/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb9/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/util/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/initialContextFactoryWithProperties/ |
/src/osgi/org.osgi.test.cases.tracker/src/org/osgi/test/cases/tracker/tb2/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/dynpkgimport/tb3/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/servicereferencegetter/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/ |
/src/osgi/org.osgi.test.cases.servlet.secure/src/org/osgi/test/cases/servlet/secure/junit/ |
/src/osgi/org.osgi.test.cases.remoteserviceadmin.secure/src/org/osgi/test/cases/remoteserviceadmin/secure/tb/exporter/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT1/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb1/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/step/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/activationpolicy/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/provider/ct/ |
/src/osgi/org.osgi.impl.service.serial/src/org/osgi/impl/service/serial/ |
/src/osgi/org.osgi.test.cases.residentialmanagement/src/org/osgi/test/cases/residentialmanagement/sharedpackage/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb1a/ |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/contextsharer/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb6/ |
/src/osgi/org.osgi.test.cases.dmt.tc3/src/org/osgi/test/cases/dmt/tc3/tbc/LogPlugin/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/activationpolicy/tblazy6/ |
/src/osgi/org.osgi.test.cases.permissionadmin/src/org/osgi/test/cases/permissionadmin/tb3/ |
/src/osgi/org.osgi.test.cases.wireadmin/src/org/osgi/test/cases/wireadmin/tb1/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb5/ |
/src/osgi/org.osgi.service.featurelauncher/src/org/osgi/service/featurelauncher/decorator/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb36/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb27/ |
/src/osgi/org.osgi.test.cases.log/src/org/osgi/test/cases/log/junit/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/classpath/ |
/src/osgi/org.osgi.test.cases.async/src/org/osgi/test/cases/async/junit/impl/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/fragments/tb20/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb32/ |
/src/osgi/org.osgi.impl.service.useradmin/src/org/osgi/impl/service/useradmin/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb2/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/channels/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classpath/tb1/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb2/impl/ |
/src/osgi/org.osgi.test.support/src/org/osgi/test/support/sleep/ |
/src/osgi/osgi.specs/src/org/osgi/tools/xmldoclet/ |
/src/osgi/org.osgi.test.cases.dmt.tc1/src/org/osgi/test/cases/dmt/tc1/tbc/Acl/ |
/src/osgi/org.osgi.test.cases.servlet/src/org/osgi/test/cases/servlet/tb2/ |
/src/osgi/org.osgi.service.enocean/src/org/osgi/service/enocean/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/lifecycle/tb6a/ |
/src/osgi/org.osgi.test.cases.cm/src/org/osgi/test/cases/cm/bundleT5/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/junit/resources/ |
/src/osgi/org.osgi.impl.service.dmt/src/org/osgi/impl/service/dmt/dispatcher/ |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb4a/impl/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/lifecycle/tb5/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb15/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tb1/DmtSession/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/tb17/ |
/src/osgi/org.osgi.service.serial/src/org/osgi/service/serial/ |
/src/osgi/org.osgi.service.upnp/src/org/osgi/service/upnp/ |
/src/osgi/org.osgi.test.cases.usbinfo/src/org/osgi/test/cases/usbinfo/util/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/exporter2/ |
/src/osgi/org.osgi.test.cases.rest.client/src/org/osgi/test/cases/rest/client/tb11/ |
/src/osgi/org.osgi.test.cases.dmt.tc2/src/org/osgi/test/cases/dmt/tc2/tbc/Uri/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/util/ |
/src/osgi/org.osgi.test.cases.cdi.secure/src/org/osgi/test/cases/cdi/secure/junit/ |
/src/osgi/org.osgi.service.jpa/src/org/osgi/service/jpa/ |
/src/osgi/licensed/docflex-doclet/demo/java4/ |
/src/osgi/org.osgi.test.cases.transaction.control/src/org/osgi/test/cases/transaction/control/resources/ |
/src/osgi/org.osgi.test.cases.converter/src/org/osgi/test/cases/converter/felix/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb14g/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/fragments/ |
/src/osgi/org.osgi.test.cases.jndi/src/org/osgi/test/cases/jndi/exceptionalInitialContextFactoryBuilder1/ |
/src/osgi/org.osgi.impl.service.onem2m/src/org/osgi/impl/service/onem2m/protocol/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/div/tb24b/ |
/src/osgi/org.osgi.framework/src/org/osgi/framework/hooks/resolver/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/junit/classloading/ |
/src/osgi/org.osgi.test.cases.jndi.secure/src/org/osgi/test/cases/jndi/secure/tests/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/junit/ |
/src/osgi/org.osgi.service.typedevent/src/org/osgi/service/typedevent/monitor/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/startlevel/tb3/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb6d/ |
/src/osgi/org.osgi.test.cases.cdi/src/org/osgi/test/cases/cdi/tb152_3/ |
/src/osgi/org.osgi.test.cases.component/src/org/osgi/test/cases/component/tb22/ |
/src/osgi/org.osgi.test.cases.enocean/src/org/osgi/test/cases/enocean/descriptions/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/serviceregistry/tb2/ |
/src/osgi/org.osgi.test.cases.metatype/src/org/osgi/test/cases/metatype/tb2/ |
/src/osgi/org.osgi.test.cases.dmt.tc4/src/org/osgi/test/cases/dmt/tc4/rfc141/plugins/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/serviceregistry/tb1/ |
/src/osgi/org.osgi.test.cases.upnp/src/org/osgi/test/cases/upnp/tbc/device/description/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/wiring/tb2/ |
/src/osgi/org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/permissions/util/ |
/src/osgi/org.osgi.test.cases.framework.launch/src/org/osgi/test/cases/framework/launch/mrjars/test/sub/ |
/src/osgi/org.osgi.test.cases.coordinator.secure/src/org/osgi/test/cases/coordinator/secure/junit/ |
/src/osgi/org.osgi.test.cases.rest/src/org/osgi/test/cases/rest/tb4/ |
/src/osgi/org.osgi.impl.service.resourcemonitoring/src/org/osgi/impl/service/resourcemonitoring/persistency/ |
/src/osgi/org.osgi.impl.service.zigbee/src/org/osgi/impl/service/zigbee/descriptions/ |
/src/osgi/org.osgi.test.cases.framework/src/org/osgi/test/cases/framework/classloading/tb16c/ |
This section shows a list of 3rd party function calls and their relative coverage information. By static analysis of the target project code, all of the 3rd party function call and their caller information, including the source file and line number that initiate the call are captured. The caller source code file and line number are shown in column 2 while column 1 is the function name of the 3rd party function call. Each occurrent of the 3rd party function call will occuply a separate row. Column 3 of each row indicate if the 3rd party call in the source file line is unreachable. Column 4 lists all fuzzers that have covered that particular system call in that specific location (source file and line)during their dynamic fuzzing.
Target sink | Callsite location | Reached by fuzzer | Covered by Fuzzers |
---|
This sections shows the raw data that is used to produce this report. This is mainly used for further processing and developer debugging.
Fuzzer | Calltree file | Program data file | Coverage file |
---|---|---|---|
CoreVersionFuzzer | fuzzerLogFile-CoreVersionFuzzer.data | fuzzerLogFile-CoreVersionFuzzer.data.yaml | jacoco.xml |
CoreVersionRangeFuzzer | fuzzerLogFile-CoreVersionRangeFuzzer.data | fuzzerLogFile-CoreVersionRangeFuzzer.data.yaml | jacoco.xml |
CoreFilterFuzzer | fuzzerLogFile-CoreFilterFuzzer.data | fuzzerLogFile-CoreFilterFuzzer.data.yaml | jacoco.xml |