Searched defs:status (Results 126 - 150 of 166) sorted by relevance

1234567

/openjdk7/jdk/src/solaris/native/java/lang/
H A DUNIXProcess_md.c300 #define WIFEXITED(status) (((status)&0xFF) == 0)
304 #define WEXITSTATUS(status) (((status)>>8)&0xFF)
308 #define WIFSIGNALED(status) (((status)&0xFF) > 0 && ((status)&0xFF00) == 0)
312 #define WTERMSIG(status) ((status)&0x7F)
324 int status; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_xembed_server.c649 Status status = 0; local
658 status = XGetWindowAttributes(awt_display, w, &attr));
660 if (status == 0 || xerror_code != Success) {
H A Dawt_GraphicsEnv.c1742 "X11GD_InitXrandrFuncs: XRRQueryVersion returned an error status");
1853 Status status; local
2078 Status status = local
2088 if (status == RRSetConfigSuccess) {
H A Dawt_InputMethod.c112 Window w; /*status window id */
125 int statusW, statusH; /*status window's w, h */
128 char status[MAX_STATUS_LEN]; /*status text */ member in struct:__anon966
131 Bool on; /*if the status window on*/
150 StatusWindow *statusWindow; /* our own status window */
153 Widget statusWidget; /* IM status window widget */
515 Status status; local
560 pX11IMData->lookup_buf_len - 1, &keysym, &status);
566 if (status
662 Window status; local
1021 XVaNestedList status = NULL; local
1076 XVaNestedList status = NULL; local
[all...]
H A Dawt_util.c166 int32_t status; local
169 status = XSendEvent(display, window, True, ButtonPressMask, (XEvent *)&ev);
171 if (status != 0) {
173 status = XSendEvent(display, window, False, ButtonReleaseMask,
176 return status;
609 /* get_im_height: returns height of the input method status area in pixels.
612 * queried then the app must not have an input method status area in the
613 * current locale and returns zero as the status area height
H A Dawt_wm.c202 Status status; local
211 status = XInternAtoms(awt_display, (char**)names, ATOM_LIST_LENGTH,
213 if (status == 0) {
383 /* Request status */
384 int status; local
399 status = XGetWindowProperty(awt_display, w,
404 if (status != Success || list == NULL) {
433 /* Request status */
434 int status; local
451 status
481 int status; local
694 int status; local
790 int status; local
885 int status; local
1078 int status; local
1695 int status; local
1778 int status; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXToolkit.c858 int32_t status; local
872 status = XmbTextListToTextProperty(awt_display, c, 1,
875 if (status == Success || status > 0) {
902 int status; local
947 status = XmbTextListToTextProperty(awt_display, (char **)cargv, argc,
949 if (status < 0) {
950 switch (status) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.h304 void QuitMessageLoop(int status);
571 // the thread status
578 } status; member in class:AwtToolkit::PreloadThread
H A Dawt_Frame.cpp394 MsgRouting AwtFrame::WmShowWindow(BOOL show, UINT status) argument
407 if (!IsEmbeddedFrame() && show == TRUE && status == 0) {
426 return AwtWindow::WmShowWindow(show, status);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_tls.c90 jint sample_status; /* Thread status for cpu sampling */
778 jint status; local
783 status = **ppstatus;
789 if ( status != 0 ) {
790 return status;
801 return status;
H A Dhprof_util.c730 jint status; local
733 status = 0;
735 (gdata->jvmti, klass, &status);
739 status = 0;
742 HPROF_JVMTI_ERROR(error, "Cannot get class status");
744 return status;
884 jint status; local
890 /* Get class status */
891 status = getClassStatus(klass);
894 if ( status
1111 jint status; local
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c314 cmsBool status; local
335 status = cmsSaveProfileToMem(sProf.pf, dataArray, &pfSize);
339 if (!status) {
399 cmsBool status; local
417 status = _getHeaderInfo(sProf.pf, dataArray, bufSize);
421 if (!status) {
475 cmsBool status; local
497 status = _setHeaderInfo(sProf.pf, dataArray, tagSize);
499 status = _writeCookedTag(sProf.pf, sig.cms, dataArray, tagSize);
504 if (!status) {
671 cmsBool status = FALSE; local
723 cmsBool status; local
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java195 private byte status = STATUS_OPERATING; field in class:ORBImpl
1258 if (status == STATUS_SHUTTING_DOWN) {
1266 status = STATUS_SHUTTING_DOWN;
1271 // At this point, the ORB status is certainly STATUS_SHUTTING_DOWN.
1277 if (status == STATUS_SHUTDOWN)
1305 status = STATUS_SHUTDOWN;
1328 if (status == STATUS_DESTROYED) {
1332 if (status == STATUS_SHUTDOWN) {
1386 shutdownFirst = (status == STATUS_OPERATING);
1394 if (status < STATUS_DESTROYE
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java393 * Sets the synchronous status of focus requests on lightweight
398 * By default, all windows have their lightweight request status
401 * The application can only set the status of lightweight focus
405 * asynchronous status.
409 * status to synchronous for any of its windows, then further focus
412 * @param w window for which the lightweight focus request status
414 * @param status the value of lightweight focus request status
417 public static void setLWRequestStatus(Window changed,boolean status){ argument
418 AWTAccessor.getWindowAccessor().setLWRequestStatus(changed, status);
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectInputStream.java3217 * dependencies on the exception status of other handles can be registered
3237 /* status codes indicating whether object has associated exception */
3242 /** array mapping handle -> object status */
3243 byte[] status; field in class:ObjectInputStream.HandleTable
3244 /** array mapping handle -> object/exception (depending on status) */
3257 status = new byte[initialCapacity];
3272 status[size] = STATUS_UNKNOWN;
3278 * Registers a dependency (in exception status) of one handle on
3287 switch (status[dependent]) {
3290 switch (status[targe
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp360 void status() { function in class:CheckRemainingObjects
1191 check_objects.status();
H A Duniverse.cpp784 jint status = Universe::initialize_heap(); local
785 if (status != JNI_OK) {
786 return status;
928 jint status = Universe::heap()->initialize(); local
929 if (status != JNI_OK) {
930 return status;
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java65 * This ArrayList will contain the status of a row
125 * Retrieves the conflict status of the current row of this
429 * This is used to set the status of each row
432 void setStatus(ArrayList status){ argument
433 stats = status;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.hpp371 int status; local
372 status = os::Solaris::cond_init(_cond);
373 assert_status(status == 0, status, "cond_init");
374 status = os::Solaris::mutex_init(_mutex);
375 assert_status(status == 0, status, "mutex_init");
401 int status; local
402 status = os::Solaris::cond_init(_cond);
403 assert_status(status
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddfa.cpp50 // Track the status of productions for a particular result
74 // Track the status of all production rule results
91 const char *valid(const char *result); // unknownValid, or status for this production
92 void set_valid(const char *result); // if not constrained, set status to knownValid
118 const char *arrayIdx, const Expr *cost, const char *rule, ProductionState &status) {
125 const Expr *previous_ub = status.cost_ub(arrayIdx);
133 const Expr *previous_lb = status.cost_lb(arrayIdx);
143 const char *validity_check = status.valid(arrayIdx);
178 status.set_cost_bounds(arrayIdx, cost, state_check, cost_check);
183 status
117 cost_check(FILE *fp, const char *spaces, const char *arrayIdx, const Expr *cost, const char *rule, ProductionState &status) argument
213 calc_cost(FILE *fp, const char *spaces, MatchList &mList, ProductionState &status) argument
239 gen_match(FILE *fp, MatchList &mList, ProductionState &status, Dict &operands_chained_from) argument
293 expand_opclass(FILE *fp, const char *indent, const Expr *cost, const char *result_type, ProductionState &status) argument
311 chain_rule(FILE *fp, const char *indent, const char *operand, const Expr *icost, const char *irule, Dict &operands_chained_from, ProductionState &status) argument
593 gen_dfa_state_body(FILE* fp, Dict &minimize, ProductionState &status, Dict &operands_chained_from, int i) argument
[all...]
/openjdk7/jdk/src/share/back/
H A Dutil.c1277 jint status; local
1281 (gdata->jvmti, clazz, &status);
1283 EXIT_ERROR(error, "on getting class status");
1285 return status;
2264 jint status = 0; local
2266 status = JDWP_SUSPEND_STATUS(SUSPENDED);
2268 return status;
2274 jdwpThreadStatus status; local
2276 status = (jdwpThreadStatus)(-1);
2280 status
2302 jint status = 0; local
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp1259 int status = env->RegisterNatives(clazz, methods, nMethods); local
1260 if (status != JNI_OK || env->ExceptionOccurred()) {
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java995 CompletionStatus status = new CompletionStatus();
996 GetQueuedCompletionStatus0(completionPort, status);
997 return status;
1010 CompletionStatus status) throws WindowsException;
1009 GetQueuedCompletionStatus0(long completionPort, CompletionStatus status) argument
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_DirectSound.cpp934 DWORD status; local
939 res = info->playBuffer->GetStatus(&status);
941 if (status & DSBSTATUS_LOOPING) {
963 if (info->captureBuffer->GetStatus(&status) == DS_OK) {
964 if (status & DSCBSTATUS_LOOPING) {
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c199 printMedialibError(int status) { argument
200 switch(status) {
248 mlib_status status; local
333 if ((status = awt_parseImage(env, jsrc, &srcImageP, FALSE)) <= 0) {
340 if ((status = awt_parseImage(env, jdst, &dstImageP, FALSE)) <= 0) {
415 status = (*sMlibFns[MLIB_CONVMxN].fptr)(dst, src, kdata, w, h,
419 if (status != MLIB_SUCCESS) {
420 printMedialibError(status);
488 mlib_status status; local
587 if ((status
746 mlib_status status; local
954 mlib_status status; local
1277 mlib_status status; local
1514 mlib_status status; local
2187 int status = 0; local
2846 int status = 0; local
[all...]

Completed in 153 milliseconds

1234567