Searched defs:status (Results 51 - 75 of 166) sorted by relevance

1234567

/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_MidiIn.c43 static inline UINT32 packMessage(int status, int data1, int data2) { argument
44 return ((status & 0xFF) | ((data1 & 0xFF) << 8) | ((data2 & 0xFF) << 16));
49 int status, int data1, int data2) {
51 message->data.s.packedMsg = packMessage(status, data1, data2);
55 static void setRealtimeMessage(MidiMessage* message, int status) { argument
56 setShortMessage(message, status, 0, 0);
60 static void set14bitMessage(MidiMessage* message, int status, int value) { argument
64 setShortMessage(message, status,
183 int status; local
231 status
48 setShortMessage(MidiMessage* message, int status, int data1, int data2) argument
[all...]
H A DPLATFORM_API_BsdOS_ALSA_MidiOut.c46 // the returned length includes the status byte.
48 static int getShortMessageLength(int status) { argument
50 if (status < 0xF0) { // channel voice message
51 dataLength = CHANNEL_MESSAGE_LENGTH[(status >> 4) & 0xF];
53 dataLength = SYSTEM_MESSAGE_LENGTH[status & 0xF];
122 int status; local
136 status = (packedMsg & 0xFF);
137 buffer[0] = (char) status;
140 TRACE4("status: %d, data1: %d, data2: %d, length: %d\n", (int) buffer[0], (int) buffer[1], (int) buffer[2], getShortMessageLength(status));
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_MidiIn.c43 static inline UINT32 packMessage(int status, int data1, int data2) { argument
44 return ((status & 0xFF) | ((data1 & 0xFF) << 8) | ((data2 & 0xFF) << 16));
49 int status, int data1, int data2) {
51 message->data.s.packedMsg = packMessage(status, data1, data2);
55 static void setRealtimeMessage(MidiMessage* message, int status) { argument
56 setShortMessage(message, status, 0, 0);
60 static void set14bitMessage(MidiMessage* message, int status, int value) { argument
64 setShortMessage(message, status,
183 int status; local
231 status
48 setShortMessage(MidiMessage* message, int status, int data1, int data2) argument
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_MidiOut.c46 // the returned length includes the status byte.
48 static int getShortMessageLength(int status) { argument
50 if (status < 0xF0) { // channel voice message
51 dataLength = CHANNEL_MESSAGE_LENGTH[(status >> 4) & 0xF];
53 dataLength = SYSTEM_MESSAGE_LENGTH[status & 0xF];
122 int status; local
136 status = (packedMsg & 0xFF);
137 buffer[0] = (char) status;
140 TRACE4("status: %d, data1: %d, data2: %d, length: %d\n", (int) buffer[0], (int) buffer[1], (int) buffer[2], getShortMessageLength(status));
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_mgrsel.c121 Status status; local
156 status = XInternAtoms(dpy, names, nscreens, False, per_scr_atoms);
161 if (status == 0) {
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthSequence.java58 Status status; field in class:NTLMAuthSequence
66 this.status = new Status();
77 assert !status.sequenceComplete;
81 byte[] b = getNextToken (crdHandle, input, status);
88 return status.sequenceComplete;
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DConnectionTest.java138 private void checkResult(SSLEngineResult result, Status status, argument
142 if ((status != null) && (result.getStatus() != status)) {
143 throw new Exception("Unexpected Status: need = " + status +
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_frame.c50 * with their status flag as they are written out to the hprof output file.
68 unsigned char status; member in struct:FrameInfo
106 "Frame 0x%08x: method=%p, location=%d, lineno=%d(%d), status=%d \n",
108 info->lineno, info->lineno_state, info->status);
163 frame_set_status(FrameIndex index, jint status) argument
168 info->status = (unsigned char)status;
209 return (jint)info->status;
/openjdk7/jdk/src/share/classes/sun/security/timestamp/
H A DTSResponse.java48 * status PKIStatusInfo,
52 * status PKIStatus,
187 private int status; field in class:TSResponse
200 * @param status A buffer containing the ASN.1 BER encoded response.
209 * Retrieve the status code returned by the TSA.
212 return status;
216 * Retrieve the status messages returned by the TSA.
218 * @return If null then no status messages were received.
235 switch (status) {
256 return ("unknown status cod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java208 * Sets the HTTP status code for the response.
213 * @param status the response code to send
216 public abstract void setStatus(int status); argument
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DContext.java285 * Prints status of GSSContext and Subject
288 public void status() throws Exception { method in class:Context
318 System.out.println("Context status of " + name + ": " + sb.toString());
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_proc.c145 int status; local
148 ret = waitpid(pid, &status, 0);
150 if (WIFSTOPPED(status)) {
154 if (WSTOPSIG(status) == SIGSTOP) {
158 if (!ptrace_continue(pid, WSTOPSIG(status))) {
159 print_error("Failed to correctly attach to VM. VM might HANG! [PTRACE_CONT failed, stopped by %d]\n", WSTOPSIG(status));
163 print_debug("waitpid(): Child process exited/terminated (status = 0x%x)\n", status);
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c159 int status; local
162 ret = waitpid(pid, &status, 0);
165 ret = waitpid(pid, &status, __WALL);
168 if (WIFSTOPPED(status)) {
172 if (WSTOPSIG(status) == SIGSTOP) {
176 if (!ptrace_continue(pid, WSTOPSIG(status))) {
177 print_error("Failed to correctly attach to VM. VM might HANG! [PTRACE_CONT failed, stopped by %d]\n", WSTOPSIG(status));
181 print_debug("waitpid(): Child process exited/terminated (status = 0x%x)\n", status);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java134 public int status() { method in class:ThreadReferenceImpl
136 int status = THREAD_STATUS_UNKNOWN;
140 status = THREAD_STATUS_ZOMBIE;
142 status = THREAD_STATUS_NOT_STARTED;
146 status = THREAD_STATUS_SLEEPING;
148 status = THREAD_STATUS_MONITOR;
150 status = THREAD_STATUS_WAIT;
152 status = THREAD_STATUS_RUNNING;
155 return status;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DJavaThreadsPanel.java211 public JavaThreadsToolBar(StatusBar status) { argument
212 super(HSDBActionManager.getInstance(), status);
H A DObjectHistogramPanel.java96 public ObjectHistogramToolBar(StatusBar status) { argument
97 super(HSDBActionManager.getInstance(), status);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DToolkitImage.java265 synchronized void infoDone(int status) { argument
266 if (status == ImageConsumer.IMAGEERROR ||
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPixelGrabber.java277 * Return the status of the pixels. The ImageObserver flags
634 * @param status the status of image loading
636 public synchronized void imageComplete(int status) { argument
638 switch (status) {
658 * Returns the status of the pixels. The ImageObserver flags
669 public synchronized int status() { method in class:PixelGrabber
/openjdk7/jdk/src/share/classes/java/beans/
H A DBeans.java566 public void showStatus(String status) { argument
/openjdk7/jdk/src/share/classes/java/lang/
H A DSystem.java942 * argument serves as a status code; by convention, a nonzero status
954 * @param status exit status.
957 * method doesn't allow exit with the specified status.
960 public static void exit(int status) { argument
961 Runtime.getRuntime().exit(status);
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DGaugeMonitor.java122 return status;
124 public final synchronized void setStatus(int status) { argument
125 this.status = status;
131 private int status; field in class:GaugeMonitor.GaugeMonitorObservedObject
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp161 int status = _method_handle_invokers[cp_index]; local
162 assert(status >= -1 && status <= 1, "oob tri-state");
163 if (status == 0) {
170 status = +1;
172 status = -1;
174 _method_handle_invokers[cp_index] = status;
179 if (status > 0) {
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetWriter.java186 private ArrayList status; field in class:CachedRowSetWriter
308 status = new ArrayList(sz);
310 status.add(0,null);
341 status.add(rows, Integer.valueOf(SyncResolver.DELETE_ROW_CONFLICT));
344 // so update status accordingly
345 status.add(rows, Integer.valueOf(SyncResolver.NO_ROW_CONFLICT));
353 status.add(rows, Integer.valueOf(SyncResolver.INSERT_ROW_CONFLICT));
356 // so update status accordingly
357 status.add(rows, Integer.valueOf(SyncResolver.NO_ROW_CONFLICT));
362 status
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadReferenceImpl.java67 JDWP.ThreadReference.Status status = null; field in class:ThreadReferenceImpl.LocalCache
268 JDWP.ThreadReference.Status myStatus = snapshot.status;
273 // thread is suspended, we can cache the status.
274 snapshot.status = myStatus;
283 public int status() { method in class:ThreadReferenceImpl
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java34 * the status of a number of media objects. Media objects could
323 * Checks the error status of all of the images.
421 int status = statusAll(first, first);
422 if ((status & LOADING) == 0) {
423 return (status == COMPLETE);
441 * status of all media that are tracked by this media tracker.
447 * loading has zero as its status.
454 * @return the bitwise inclusive <b>OR</b> of the status of
468 int status = 0;
470 status
817 int status; field in class:MediaEntry
[all...]

Completed in 58 milliseconds

1234567