Searched refs:res (Results 226 - 250 of 785) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp182 size_t res; local
183 RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res);
184 return res;
188 size_t res; local
189 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
190 return res;
230 int res = ::poll(&pfd, 1, timeout); local
232 if (res == OS_ERR && errno == EINTR) {
245 return res;
H A Djsig.c162 int res; local
184 res = call_os_sigaction(sig, act, &oldAct);
194 return res;
198 res = call_os_sigaction(sig, act, oact);
201 return res;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl_gf.c51 mp_err res = MP_OKAY; local
66 if (res != MP_OKAY) {
78 mp_err res = MP_OKAY; local
123 if (res != MP_OKAY) {
137 mp_err res = MP_OKAY; local
161 res = MP_UNDEF;
179 if (res != MP_OKAY) {
212 mp_err res; local
214 if ((res = mp_add(a, b, r)) != MP_OKAY) {
215 return res;
241 mp_err res = MP_OKAY; local
266 mp_err res = MP_OKAY; local
349 mp_err res = MP_OKAY; local
443 mp_err res = MP_OKAY; local
520 mp_err res = MP_OKAY; local
611 mp_err res = MP_OKAY; local
695 mp_err res = MP_OKAY; local
788 mp_err res = MP_OKAY; local
856 mp_err res = MP_OKAY; local
957 mp_err res = MP_OKAY; local
1025 mp_err res = MP_OKAY; local
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c119 jint res; \
133 TESTANDCLIP(yMinf, yMaxf, Y0, X0, Y1, X1, jint, res); \
134 if (res == CRES_INVISIBLE) break; \
135 TESTANDCLIP(yMinf, yMaxf, Y1, X1, Y0, X0, jint, res); \
136 if (res == CRES_INVISIBLE) break; \
137 TESTANDCLIP(xMinf, xMaxf, X0, Y0, X1, Y1, jint, res); \
138 if (res == CRES_INVISIBLE) break; \
139 TESTANDCLIP(xMinf, xMaxf, X1, Y1, X0, Y0, jint, res); \
140 if (res == CRES_INVISIBLE) break; \
323 #define IS_CLIPPED(res) (re
1370 jint X1, Y1, X2, Y2, X3, Y3, res; local
2099 jint x3, y3, res; local
2186 jint res; local
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DUnixOperatingSystem_md.c237 kern_return_t res = task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)&t_info, &t_info_count);
238 if (res != KERN_SUCCESS) {
314 kern_return_t res; local
317 res = host_statistics(mach_host_self(), HOST_VM_INFO, (host_info_t)&vm_stats, &count);
318 if (res != KERN_SUCCESS) {
371 int res; local
381 res = proc_pidinfo(my_pid, PROC_PIDTBSDINFO, 0, &bsdinfo, PROC_PIDTBSDINFO_SIZE);
382 if (res <= 0) {
398 res = proc_pidinfo(my_pid, PROC_PIDLISTFDS, 0, fds, fds_size);
399 if (res <
[all...]
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DLinuxVirtualMachine.c202 jboolean res; local
221 res = (jboolean)(strstr(s, "NPTL") == NULL);
223 return res;
355 int res; local
364 res = stat64(p, &sb);
365 if (res != 0) {
367 res = errno;
375 if (res == 0) {
381 char* msg = strdup(strerror(res));
398 int res; local
399 RESTARTABLE(close(fd), res); local
[all...]
H A DBsdVirtualMachine.c137 int res; local
146 res = stat(p, &sb);
147 if (res != 0) {
149 res = errno;
157 if (res == 0) {
163 char* msg = strdup(strerror(res));
180 int res; local
181 RESTARTABLE(close(fd), res); local
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DPipelineManager.cpp143 HRESULT res; local
144 if (FAILED(res = InitAdapters())) {
147 return res;
223 HRESULT res = S_OK; local
273 res = pMgr->InitD3D();
275 return res;
328 HRESULT res = E_FAIL; local
344 res = CheckAdaptersInfo();
345 RETURN_STATUS_IF_FAILED(res);
672 HRESULT res; local
736 HRESULT res; local
777 HRESULT res; local
895 HRESULT res; local
920 HRESULT res = S_OK; local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DObjectPool.java27 import com.sun.org.apache.xml.internal.res.XMLErrorResources;
28 import com.sun.org.apache.xml.internal.res.XMLMessages;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/jaxp/
H A DJAXPVariableStack.java32 import com.sun.org.apache.xpath.internal.res.XPATHErrorResources;
33 import com.sun.org.apache.xalan.internal.res.XSLMessages;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java940 boolean res;
942 res = rr < ll;
944 res = rr > ll;
946 res = rr <= ll;
948 res = rr >= ll;
950 res = rr == ll;
952 res = rr != ll;
956 return make(vm, res);
998 double res;
1000 res
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/oql/
H A DOQLEngine.java92 Object res = evalScript(query);
93 visitor.visit(res);
214 Object res = call("__where__", args);
215 if (res instanceof Boolean) {
216 b = ((Boolean)res).booleanValue();
217 } else if (res instanceof Number) {
218 b = ((Number)res).intValue() != 0;
220 b = (res != null);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DMappedReadBuffer.java85 public synchronized void get(long pos, byte[] res) throws IOException { argument
87 buf.get(res);
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp198 DWORD res = ::WaitForSingleObject(mutex(), INFINITE);
199 if (res != WAIT_OBJECT_0) {
235 DWORD res = ::WaitForSingleObject(wakeup(), INFINITE); local
236 guarantee(res == WAIT_OBJECT_0, "wait failed");
238 res = ::WaitForSingleObject(mutex(), INFINITE);
239 guarantee(res == WAIT_OBJECT_0, "wait failed");
328 DWORD res = ::WaitForSingleObject(Win32AttachListener::mutex(), INFINITE); local
329 if (res == WAIT_OBJECT_0) {
/openjdk7/jdk/src/share/native/java/util/zip/
H A DDeflater.c99 int res; local
103 res = deflateSetDictionary((z_stream *)jlong_to_ptr(addr), buf + off, len);
105 switch (res) {
128 int res; local
151 res = deflateParams(strm, level, strategy);
155 switch (res) {
190 res = deflate(strm, finish ? Z_FINISH : flush);
194 switch (res) {
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DBaseLocale.java258 int res = LocaleUtils.caseIgnoreCompare(this.lang, other.lang);
259 if (res == 0) {
260 res = LocaleUtils.caseIgnoreCompare(this.scrt, other.scrt);
261 if (res == 0) {
262 res = LocaleUtils.caseIgnoreCompare(this.regn, other.regn);
263 if (res == 0) {
264 res = this.vart.compareTo(other.vart);
268 return res;
/openjdk7/jdk/test/javax/swing/JTabbedPane/7010561/
H A Dbug7010561.java79 int res = ((Integer) method.invoke(basicTabbedPaneUI, TAB_PLACEMENT[i], 0,
82 if (res != RETURN_VALUE[i]) {
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DBsdFileSystem.java83 int res = BsdNativeDispatcher.fsstatEntry(iter, entry);
84 if (res < 0)
H A DLinuxFileSystem.java85 int res = getmntent(fp, entry);
86 if (res < 0)
/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestKeyMaterial.java168 private static void match(int lineNumber, byte[] out, Object res, argument
170 if ((out == null) || (res == null)) {
171 if (out != res) {
178 if (res instanceof SecretKey) {
179 b = ((SecretKey)res).getEncoded();
186 } else if (res instanceof IvParameterSpec) {
187 b = ((IvParameterSpec)res).getIV();
189 throw new Exception(res.getClass().getName());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaThread.java78 String[] res = new String[flds.length + 2];
79 System.arraycopy(flds, 0, res, 0, flds.length);
80 res[flds.length] = "frames";
81 res[flds.length + 1] = "monitors";
82 return res;
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.hpp69 PromotedObject* res; local
72 res = (PromotedObject*)oopDesc::decode_heap_oop(_data._narrow_next);
74 res = (PromotedObject*)(_next & next_mask);
76 assert(oop(res)->is_oop_or_null(true /* ignore mark word */), "Not an oop?");
77 return res;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dvm_operations_g1.cpp80 bool res = VM_GC_Operation::doit_prologue(); local
81 if (!res) {
92 return res;
125 bool res = g1h->g1_policy()->force_initial_mark_if_outside_cycle(_gc_cause); local
145 if (!res) {
/openjdk7/hotspot/src/os/bsd/vm/
H A Djsig.c160 int res; local
182 res = call_os_sigaction(sig, act, &oldAct);
192 return res;
196 res = call_os_sigaction(sig, act, oact);
199 return res;
/openjdk7/hotspot/src/os/solaris/vm/
H A Djsig.c200 int res; local
223 res = call_os_sigaction(sig, act, &oldAct);
233 return res;
237 res = call_os_sigaction(sig, act, oact);
240 return res;

Completed in 91 milliseconds

1234567891011>>