HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 476 - 500 of 4870) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/native/
libcore_icu_NativePluralRules.cpp 52 UErrorCode status = U_ZERO_ERROR; local
53 PluralRules* result = PluralRules::forLocale(locale, status);
54 maybeThrowIcuException(env, "PluralRules::forLocale", status);
libcore_icu_TimeZoneNames.cpp 69 UErrorCode status = U_ZERO_ERROR; local
70 UniquePtr<TimeZoneNames> names(TimeZoneNames::createInstance(icuLocale.locale(), status));
71 if (maybeThrowIcuException(env, "TimeZoneNames::createInstance", status)) {
125 UErrorCode status = U_ZERO_ERROR; local
126 UniquePtr<TimeZoneNames> names(TimeZoneNames::createInstance(icuLocale.locale(), status));
127 if (maybeThrowIcuException(env, "TimeZoneNames::createInstance", status)) {
libcore_icu_Transliterator.cpp 35 UErrorCode status = U_ZERO_ERROR; local
36 Transliterator* t = Transliterator::createInstance(id.unicodeString(), UTRANS_FORWARD, status);
37 if (maybeThrowIcuException(env, "Transliterator::createInstance", status)) {
48 UErrorCode status = U_ZERO_ERROR; local
49 StringEnumeration* e = Transliterator::getAvailableIDs(status);
50 return fromStringEnumeration(env, status, "Transliterator::getAvailableIDs", e);
  /ndk/sources/android/crazy_linker/tests/
test_relocated_shared_relro.cpp 89 int status; local
90 waitpid(child, &status, 0);
92 if (WIFSIGNALED(status))
94 else if (WIFEXITED(status)) {
95 int child_status = WEXITSTATUS(status);
97 Panic("Child terminated with status=%d\n", child_status);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_demangle.cpp 29620 int status; local
29632 std::cout << "Got instead: NULL, " << status << '\\n'; local
29650 int status; local
29654 std::cout << invalid_cases[i] << " should be invalid but is not\\n" << " got status = " << status << '\\n'; local
    [all...]
  /ndk/tests/device/test-wait/jni/
test_wait.c 70 int status = 0; local
71 pid_t ret = wait(&status);
76 return WEXITSTATUS(status);
81 int status = 0; local
82 pid_t ret = waitpid((pid_t)-1, &status, 0);
87 return WEXITSTATUS(status);
92 int status = 0; local
94 pid_t ret = wait3(&status, 0, &ru);
99 return WEXITSTATUS(status);
104 int status = 0 local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
CallbackInfo.java 29 int status; field in class:CallbackInfo
36 CallbackInfo(String address, int status, int srvcType, int srvcInstId,
39 this.status = status;
47 CallbackInfo(String address, int status) {
49 this.status = status;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
MeetingResponseParser.java 37 int status = getValueInt(); local
38 if (status != 1) {
39 LogUtils.w(TAG, "Error in meeting response: %d", status);
SettingsParser.java 47 int status = getValueInt(); local
48 LogUtils.d(TAG, "Settings status = %d", status);
49 if (status == 1) {
77 LogUtils.d(TAG, "Set status = %d", getValueInt());
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 54 status_t status = sm->addService(name, new BnInterface<ITestService>()); local
55 if (status != OK) {
73 status_t status = service->pingBinder(); local
74 if (status != OK) {
75 fprintf(stderr, "error: can't ping: %s [%d]\n", argv[1], status);
83 status_t status = service->pingBinder(); local
84 if (status != OK) {
85 fprintf(stderr, "error: can't ping: %s [%d]\n", argv[1], status);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetafile.h 44 static Status GetMetafileHeader(const WCHAR *filename,
50 static Status GetMetafileHeader(IStream *stream, MetafileHeader *header)
56 //static Status GetMetafileHeader(HMETAFILE hWmf,
63 static Status GetMetafileHeader(HENHMETAFILE hEmf,
215 Status status = updateStatus(DllExports::GdipCloneImage( local
217 if (status == Ok) {
230 //Status ConvertToEmfPlus(const Graphics *refGraphics,
242 //Status ConvertToEmfPlus(const Graphics *refGraphics,
255 //Status ConvertToEmfPlus(const Graphics *refGraphics
    [all...]
  /system/core/libsync/include/sync/
sync.h 31 int32_t status; member in struct:sync_fence_info_data
39 int32_t status; member in struct:sync_pt_info
  /system/netd/server/
NetlinkManager.cpp 124 int status = 0; local
128 status = -1;
139 status = -1;
151 status = -1;
161 return status;
  /system/vold/
CheckBattery.cpp 71 status_t status = interface local
73 if (status == NO_ERROR) {
Ext4.cpp 75 int status; local
86 rc = android_fork_execvp(ARRAY_SIZE(args), (char **)args, &status, false,
95 if (!WIFEXITED(status)) {
101 status = WEXITSTATUS(status);
103 if (status == 0) {
107 SLOGE("Resize (ext4) failed (unknown exit code %d)", status);
118 int status; local
131 rc = android_fork_execvp(ARRAY_SIZE(args), (char **)args, &status, false, true);
134 rc = android_fork_execvp(5, (char **)args, &status, false, true)
    [all...]
NetlinkManager.cpp 95 int status = 0; local
99 status = -1;
107 return status;
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
SdkLocationChooserDialog.java 102 SdkInstallStatus status = locator.isValidInstallation(); local
103 if (status.isValid()) {
107 mStatusLabel.setText(status.getErrorMessage());
  /bionic/libc/kernel/uapi/linux/
sync.h 35 __s32 status; member in struct:sync_pt_info
44 __s32 status; member in struct:sync_fence_info_data
  /bionic/tests/
sched_test.cpp 36 int status; local
37 ASSERT_EQ(tid, TEMP_FAILURE_RETRY(waitpid(tid, &status, __WCLONE)));
41 ASSERT_TRUE(WIFEXITED(status));
42 ASSERT_EQ(123, WEXITSTATUS(status));
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Renderer.cpp 152 GLenum status = glCheckFramebufferStatus(GL_FRAMEBUFFER); local
153 if (status != GL_FRAMEBUFFER_COMPLETE) {
154 ALOGE("Framebuffer not complete: %d", status);
  /cts/suite/cts/deviceTests/opengl/jni/primitive/contextswitch/
ContextSwitchRenderer.cpp 127 GLenum status = glCheckFramebufferStatus(GL_FRAMEBUFFER); local
128 if (status != GL_FRAMEBUFFER_COMPLETE) {
129 ALOGE("Framebuffer not complete: %d", status);
  /cts/tests/tests/os/jni/
android_os_cts_OSFeatures.cpp 77 int status; local
78 TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
79 return WIFSIGNALED(status) && (WTERMSIG(status) == SIGSYS);
  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunListener.java 41 String status = result.wasSuccessful() ? Prefixes.OK_TEST_MARKER local
43 System.out.println(status);
  /development/ndk/platforms/android-L/include/linux/
sync.h 35 __s32 status; member in struct:sync_pt_info
44 __s32 status; member in struct:sync_fence_info_data
  /development/ndk/sources/android/ndk_helper/
shader.cpp 104 GLint status; local
105 glGetShaderiv( *shader, GL_COMPILE_STATUS, &status );
106 if( status == 0 )
144 GLint status; local
160 glGetProgramiv( prog, GL_LINK_STATUS, &status );
161 if( status == 0 )
172 GLint logLength, status; local
184 glGetProgramiv( prog, GL_VALIDATE_STATUS, &status );
185 if( status == 0 )

Completed in 1119 milliseconds

<<11121314151617181920>>