Searched defs:filep (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/java/security/PermissionCollection/
H A DConcurrent.java53 testPc(filep);
171 private static final Permission[] filep = new Permission[]{ field in class:Concurrent
239 allp, filep, sockp, propp, basicp, delegatep, servicep, mbeanp, unresp};
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Djni.cpp203 unpacker::file* filep = uPtr->get_next_file(); local
210 if (filep == null) {
213 assert(filep == &uPtr->cur_file);
218 intParts[iidx++] = (jint)( (julong)filep->size >> 32 );
219 intParts[iidx++] = (jint)( (julong)filep->size >> 0 );
220 intParts[iidx++] = filep->modtime;
221 intParts[iidx++] = filep->deflate_hint() ? 1 : 0;
224 env->SetObjectArrayElement(pParts, pidx++, env->NewStringUTF(filep->name));
227 if (filep->data[0].len > 0)
228 pDataBuf = env->NewDirectByteBuffer(filep
244 unpacker::file* filep = &uPtr->cur_file; local
[all...]

Completed in 126 milliseconds