Searched defs:system (Results 1 - 25 of 223) sorted by last modified time

123456789

/external/valgrind/main/coregrind/
H A Dm_libcproc.c346 Int VG_(system) ( const HChar* cmd ) function
448 * The gettid system call does not exist. The obvious assumption
450 * system where the getpid system call actually returns the ID of
455 * leader but where the gettid system call has not yet been added.
/external/svox/pico/lib/
H A Dpicoapi.c54 int is_valid_system_handle(pico_System system) argument
56 return (system != NULL) && CHECK_MAGIC_NUMBER(system);
76 pico_System *system
89 } else if (system == NULL) {
124 *system = sys;
128 if (system != NULL) {
129 *system = NULL;
137 * pico_initialize : initializes the pico system private memory
140 * @param system
201 pico_getSystemStatusMessage( pico_System system, pico_Status errCode, pico_Retstring outMessage ) argument
241 pico_getNrSystemWarnings( pico_System system, pico_Int32 *outNrOfWarnings ) argument
273 pico_getSystemWarning( pico_System system, const pico_Int32 warningIndex, pico_Status *outCode, pico_Retstring outMessage ) argument
313 pico_loadResource( pico_System system, const pico_Char *lingwareFileName, pico_Resource *outLingware ) argument
346 pico_unloadResource( pico_System system, pico_Resource *inoutLingware ) argument
382 pico_getResourceName( pico_System system, pico_Resource resource, pico_Retstring outName) argument
407 pico_createVoiceDefinition( pico_System system, const pico_Char *voiceName ) argument
438 pico_addResourceToVoiceDefinition( pico_System system, const pico_Char *voiceName, const pico_Char *resourceName ) argument
473 pico_releaseVoiceDefinition( pico_System system, const pico_Char *voiceName ) argument
508 pico_newEngine( pico_System system, const pico_Char *voiceName, pico_Engine *outEngine ) argument
554 pico_disposeEngine( pico_System system, pico_Engine *inoutEngine ) argument
[all...]
H A Dpicoextapi.c52 pico_System *system);
89 pico_System system,
93 if (NULL == system) {
108 pico_System system,
113 if (NULL == system) {
123 pico_System system,
127 if (NULL == system) {
162 pico_System system,
171 if (!is_valid_system_handle(system)) {
176 picoos_Common common = pico_sysGetCommon(system);
88 picoext_setTraceLevel( pico_System system, pico_Int32 level ) argument
107 picoext_setTraceFilterFN( pico_System system, const pico_Char *name ) argument
122 picoext_setLogFile( pico_System system, const pico_Char *name ) argument
161 picoext_getSystemMemUsage( pico_System system, pico_Int16 resetIncremental, pico_Int32 *outUsedBytes, pico_Int32 *outIncrUsedBytes, pico_Int32 *outMaxUsedBytes ) argument
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/owasp/sanitizer/lib/junit/
H A Djunit-dep.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jar ... .IProperties systemFile com.vladium.util.IProperties system com.vladium.util.IProperties userOverrides ClassLoader loader ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h620 /// int system(const char *command);
621 system, enumerator in enum:llvm::LibFunc::Func
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dparse-events.h20 char *system; member in struct:tracepoint_path
/external/lldb/examples/customization/pwd-cd-and-system/
H A Dutils.py36 def system(debugger, command_line, result, dict): function
/external/lldb/test/
H A Dlldbtest.py179 """Return the pointer size of the host system."""
236 def system(*popenargs, **kwargs): function
1211 system([self.getCompiler(), "-v"], sender=self)
1251 version_output = system([which(compiler), "-v"])[1]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.cpp540 float system = (float)info->user_time.seconds + (float)info->user_time.microseconds / 1000000.0f; local
546 system);
H A DMachThread.cpp198 float system = (float)basicInfo.user_time.seconds + (float)basicInfo.user_time.microseconds / 1000000.0f; local
199 snprintf(g_basic_info_string, sizeof(g_basic_info_string), "Thread 0x%8.8" PRIx64 ": user=%f system=%f cpu=%d sleep_time=%d",
202 system,
363 DNBLogThreaded("[%3u] #%3u tid: 0x%8.8" PRIx64 ", pc: 0x%16.16" PRIx64 ", sp: 0x%16.16" PRIx64 ", user: %d.%6.6d, system: %d.%6.6d, cpu: %2d, policy: %2d, run_state: %2d (%s), flags: %2d, suspend_count: %2d (current %2d), sleep_time: %d",
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-parse.h299 char *system; member in struct:event_format
/external/junit/src/org/junit/internal/
H A DTextListener.java16 public TextListener(JUnitSystem system) { argument
17 this(system.out());
/external/junit/src/org/junit/runner/
H A DJUnitCore.java50 * @param system
52 public static void runMainAndExit(JUnitSystem system, String... args) { argument
53 Result result= new JUnitCore().runMain(system, args);
54 system.exit(result.wasSuccessful() ? 0 : 1);
81 * @param system
83 public Result runMain(JUnitSystem system, String... args) { argument
84 system.out().println("JUnit version " + Version.id());
91 system.out().println("Could not find class: " + each);
96 RunListener listener= new TextListener(system);
/external/icu/icu4c/source/i18n/
H A Dulocdata.c228 UMeasurementSystem system = UMS_LIMIT; local
231 return system;
235 system = (UMeasurementSystem) ures_getInt(measurement, status);
239 return system;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategory.java51 * @return the system {@link PropertyCategory} with given priority.
53 public static final PropertyCategory system(int priority) { method in class:PropertyCategory
58 * @return the system {@link PropertyCategory} with priority
59 * <code>system.getPriority() + additional</code>.
61 public static final PropertyCategory system(PropertyCategory system, int additional) { argument
62 Assert.isTrue(system.isSystem());
63 return system(system.getPriority() - SYSTEM_BASE + additional);
147 * @return <code>true</code> if this property is system
[all...]
/external/emma/lib/
H A Demma.jar ... .IProperties systemFile com.vladium.util.IProperties system com.vladium.util.IProperties userOverrides ClassLoader loader ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 4896 milliseconds

123456789