Searched refs:res (Results 126 - 150 of 785) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.cpp89 oop res = (oop)result.get_jobject(); local
90 assert(res->is_typeArray(), "just checking");
91 assert(typeArrayKlass::cast(res->klass())->element_type() == T_BYTE, "just checking");
94 typeArrayOop ba = typeArrayOop(res);
95 jbyte* addr = typeArrayOop(res)->byte_at_addr(0);
198 int res = dumper.dump(op->arg(0)); local
199 if (res == 0) {
248 bool res = CommandLineFlags::boolAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
249 if (! res) {
252 return res
266 bool res = CommandLineFlags::intxAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
285 bool res = CommandLineFlags::uintxAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
304 bool res = CommandLineFlags::uint64_tAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
319 bool res = CommandLineFlags::ccstrAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
418 jint res = JNI_OK; local
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp112 void complete(jint res, bufferedStream* st);
141 char* res = _pos; local
147 return res;
200 int res = ::bind(listener, (struct sockaddr*)&addr, sizeof(addr)); local
201 if (res == -1) {
202 RESTARTABLE(::close(listener), res); local
207 res = ::listen(listener, 5);
208 if (res == 0) {
209 RESTARTABLE(::chmod(initial_path, S_IREAD|S_IWRITE), res); local
210 if (res
215 RESTARTABLE(::close(listener), res); local
343 int res; local
344 RESTARTABLE(::close(s), res); local
351 int res; local
352 RESTARTABLE(::close(s), res); local
359 int res; local
360 RESTARTABLE(::close(s), res); local
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java377 byte[] res = readBytesFromProcess0(address, numBytes);
378 if(res != null)
379 return new ReadResult(res);
426 List res = null;
428 res = threadListCache;
430 res = new ArrayList();
431 fillThreadList0(res);
433 threadListCache = res;
436 return res;
456 CFrame res
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousSocketChannelImpl.c96 BOOL res; local
104 res = (*ConnectEx_func)(s,
111 if (res == 0) {
159 BOOL res; local
163 res = WSARecv(s,
171 if (res == SOCKET_ERROR) {
192 BOOL res; local
195 res = WSASend(s,
203 if (res == SOCKET_ERROR) {
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DLinuxNativeDispatcher.c84 size_t res = -1; local
92 res = (*my_fgetxattr_func)(fd, name, value, valueLen);
94 if (res == (size_t)-1)
96 return (jint)res;
103 int res = -1; local
111 res = (*my_fsetxattr_func)(fd, name, value, valueLen, 0);
113 if (res == -1)
121 int res = -1; local
128 res = (*my_fremovexattr_func)(fd, name);
130 if (res
138 size_t res = -1; local
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DTextRenderer.cpp95 HRESULT res; local
115 res = pd3dDevice->SetPixelShaderConstantF(2, vals, 1);
117 return res;
177 HRESULT res = S_OK; local
182 res = d3dc->GetResourceManager()->GetBlitTexture(&pGlyphTexRes);
184 RETURN_STATUS_IF_FAILED(res);
188 res = d3dc->GetResourceManager()->
191 RETURN_STATUS_IF_FAILED(res);
211 res = d3dc->EnableLCDTextProgram();
212 RETURN_STATUS_IF_FAILED(res);
257 HRESULT res = S_OK; local
281 HRESULT res = S_OK; local
358 HRESULT res; local
522 HRESULT res; local
600 HRESULT res = S_OK; local
653 HRESULT res; local
768 HRESULT res = S_OK; local
[all...]
H A DD3DGraphicsDevice.cpp142 HRESULT res; local
156 if (FAILED(res = pMgr->GetD3DContext(adapter, &pCtx))) {
157 D3DRQ_MarkLostIfNeeded(res, D3DRQ_GetCurrentDestination());
190 res = pCtx->ConfigureContext(&newParams);
191 D3DRQ_MarkLostIfNeeded(res, D3DRQ_GetCurrentDestination());
192 return SUCCEEDED(res);
204 HRESULT res; local
215 if (FAILED(res = pMgr->GetD3DContext(adapter, &pCtx))) {
216 D3DRQ_MarkLostIfNeeded(res, D3DRQ_GetCurrentDestination());
234 res
255 HRESULT res; local
442 HRESULT res; local
473 HRESULT res; local
[all...]
H A DD3DVertexCacher.cpp158 HRESULT res; local
163 if (FAILED(res = (*ppVC)->Init(pCtx))) {
167 return res;
203 HRESULT res = local
207 RETURN_STATUS_IF_FAILED(res);
209 res = lpD3DDevice->SetStreamSource(0, lpD3DVertexBuffer, 0,
211 RETURN_STATUS_IF_FAILED(res);
214 return res;
226 HRESULT res; local
227 if (SUCCEEDED(res
310 HRESULT res; local
376 HRESULT res; local
403 HRESULT res; local
433 HRESULT res; local
459 HRESULT res; local
479 HRESULT res; local
556 HRESULT res; local
597 HRESULT res; local
648 HRESULT res; local
674 HRESULT res; local
700 HRESULT res; local
779 HRESULT res = D3D_OK; local
[all...]
/openjdk7/jdk/src/share/classes/sun/net/util/
H A DIPAddressUtil.java46 byte[] res = new byte[INADDR4SZ];
60 res[0] = (byte) ((val >> 24) & 0xff);
61 res[1] = (byte) (((val & 0xffffff) >> 16) & 0xff);
62 res[2] = (byte) (((val & 0xffff) >> 8) & 0xff);
63 res[3] = (byte) (val & 0xff);
77 res[0] = (byte) (val & 0xff);
81 res[1] = (byte) ((val >> 16) & 0xff);
82 res[2] = (byte) (((val & 0xffff) >> 8) &0xff);
83 res[3] = (byte) (val & 0xff);
97 res[
[all...]
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Djvm_dtrace.c147 int res; local
156 res = stat64(path, &sb);
157 if (res != 0) {
221 int res = unlink(path); local
222 if (res) {
261 int res; local
262 RESTARTABLE(poll(0, 0, 200), res);
289 const char* res = NULL; local
290 thr_getspecific(jvm_error_key, (void**)&res);
291 return res;
297 int res; local
433 int* res = (int*)(door_args.data_ptr); local
[all...]
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djvm_dtrace.c147 int res; local
156 res = stat64(path, &sb);
157 if (res != 0) {
221 int res = unlink(path); local
222 if (res) {
261 int res; local
262 RESTARTABLE(poll(0, 0, 200), res);
289 const char* res = NULL; local
290 thr_getspecific(jvm_error_key, (void**)&res);
291 return res;
297 int res; local
433 int* res = (int*)(door_args.data_ptr); local
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.cpp41 address res = (address) AllocateHeap(alloc_size, mtSymbol); local
42 DEBUG_ONLY(set_allocation_type(res, ResourceObj::C_HEAP);)
43 return res;
48 address res = (address)arena->Amalloc(alloc_size); local
49 DEBUG_ONLY(set_allocation_type(res, ResourceObj::ARENA);)
50 return res;
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Util.c44 INT64 res; local
48 res = ((INT64) timeGetTime()) - handle->startTime;
49 if (res < 0) {
50 res *= (INT64) -1000;
52 res *= (INT64) 1000;
54 return res;
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DAnnoTypeElemDecl.java74 final Collection<String> res = new ArrayList<String>();
78 res.add("type");
81 res.add("executable");
84 res.add("method");
88 res.add("anno type element");
91 return res;
/openjdk7/jdk/test/sun/java2d/X11SurfaceData/SharedMemoryPixmapsTest/
H A DSharedMemoryPixmapsTest.java77 int res;
79 res = VolatileImage.IMAGE_INCOMPATIBLE;
81 res = vi.validate(getGraphicsConfiguration());
83 if (res == VolatileImage.IMAGE_INCOMPATIBLE) {
87 res = VolatileImage.IMAGE_RESTORED;
89 if (res == VolatileImage.IMAGE_RESTORED) {
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmplogic.c74 mp_err res; local
78 if((res = mp_copy(a, b)) != MP_OKAY)
79 return res;
93 mp_err res; local
97 if((res = mp_copy(a, b)) != MP_OKAY)
98 return res;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtomList.java73 XAtom[] res = new XAtom[size()];
77 res[i++] = iter.next();
79 return res;
126 XAtomList res = new XAtomList();
133 res.add(atom);
137 return res;
H A DXPopupMenuPeer.java217 Rectangle res;
218 res = fitWindowRight(globalBounds, windowSize, screenSize);
219 if (res != null) {
220 return res;
222 res = fitWindowLeft(globalBounds, windowSize, screenSize);
223 if (res != null) {
224 return res;
226 res = fitWindowBelow(globalBounds, windowSize, screenSize);
227 if (res != null) {
228 return res;
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BC.c135 res = vis_write_lo(res, vis_fpack16(v1))
194 res = vis_fpadd16(e0, e1)
205 res = vis_freg_pair(vis_fpadd16s(vis_read_hi(v2), vis_read_lo(v2)), \
229 mlib_d64 res; local
253 vis_st_u8(res, dstPixelPtr++);
277 *(mlib_f32*)dstPixelPtr = vis_fpack16(res);
286 *(mlib_f32*)dstPixelPtr = vis_fpack16(res);
289 *(mlib_f32*)dstPixelPtr = vis_fpack16(res);
293 vis_st_u8(res, dstPixelPt
473 mlib_d64 res, *dp; local
1053 mlib_d64 res, *dp, *xPtr; local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/res/
H A DXSLMessages.java23 package com.sun.org.apache.xalan.internal.res;
28 import com.sun.org.apache.xpath.internal.res.XPATHMessages;
46 "com.sun.org.apache.xalan.internal.res.XSLTErrorResources";
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DGuard.java57 public static Result convert( boolean res )
59 return res ? ENABLED : DISABLED ;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.inline.hpp52 HeapRegion* res = _hrs.addr_to_region_unsafe((HeapWord*) addr); local
53 return res;
156 bool res = false; local
158 res |= G1EvacuationFailureALotDuringConcMark;
161 res |= G1EvacuationFailureALotDuringInitialMark;
164 res |= G1EvacuationFailureALotDuringYoungGC;
167 res |= G1EvacuationFailureALotDuringMixedGC;
169 return res;
/openjdk7/jdk/src/windows/native/sun/tools/attach/
H A DWindowsAttachProvider.c81 BOOL res = GetVolumeInformation(volume, local
89 if (res != 0) {
116 BOOL res = EnumProcesses(ptr, size, &bytesReturned); local
117 if (res != 0) {
161 BOOL res = EnumProcessModules(hProcess, ptr, size, &bytesReturned); local
162 if (res != 0) {
167 BOOL res = GetModuleBaseName(hProcess, ptr[i], base, sizeof(base)); local
168 if (res != 0) {
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestKeyMaterial.java154 private static void match(int lineNumber, byte[] out, Object res) argument
156 if ((out == null) || (res == null)) {
157 if (out != res) {
164 if (res instanceof SecretKey) {
165 b = ((SecretKey)res).getEncoded();
166 } else if (res instanceof IvParameterSpec) {
167 b = ((IvParameterSpec)res).getIV();
169 throw new Exception(res.getClass().getName());
/openjdk7/langtools/test/tools/apt/mirror/type/
H A DClassTyp.java97 final Collection<String> res = new ArrayList<String>();
101 res.add("ref type");
104 res.add("class");
107 res.add("interface");
110 return res;
147 Collection<String> res = new ArrayList<String>();
149 res.add(c.toString());
151 return res;

Completed in 101 milliseconds

1234567891011>>