/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/config/ |
H A D | SetupWriter.java | 45 private CharArrayWriter buf = new CharArrayWriter(); field in class:SetupWriter 53 buf.write(b, off, len); 70 buf.writeTo(realWriter); 71 buf.reset();
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/tools/manifest/ |
H A D | Utils.java | 43 static byte[] buf = new byte[BUFFER_SIZE]; field in class:Utils 55 synchronized(buf){ 56 while (din.read(buf) != -1);
|
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/security/util/ |
H A D | DerInputBuffer.java | 46 DerInputBuffer(byte[] buf) { argument 47 super(buf); 50 DerInputBuffer(byte[] buf, int offset, int len) { argument 51 super(buf, offset, len); 71 System.arraycopy(buf, pos, retval, 0, len); 79 return buf[pos]; 100 if (this.buf[this.pos + i] != other.buf[other.pos + i]) { 129 if (len > 1 && buf[pos] == 0) { 140 System.arraycopy(buf, po [all...] |
/forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/util/ |
H A D | FileUtil.java | 81 byte[] buf = new byte[1024]; 84 while ((len = in.read(buf)) != -1) { 85 buffer.put(buf, len); 101 public void put(byte[] buf, int len) { argument 103 System.arraycopy(buf, 0, buffer, write, len);
|
/forgerock/openam/openam-shared/src/main/java/com/iplanet/security/util/ |
H A D | DerInputBuffer.java | 46 DerInputBuffer(byte[] buf) { argument 47 super(buf); 50 DerInputBuffer(byte[] buf, int offset, int len) { argument 51 super(buf, offset, len); 71 System.arraycopy(buf, pos, retval, 0, len); 79 return buf[pos]; 100 if (this.buf[this.pos + i] != other.buf[other.pos + i]) { 129 if (len > 1 && buf[pos] == 0) { 140 System.arraycopy(buf, po [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/config/ |
H A D | SetupWriter.java | 45 private CharArrayWriter buf = new CharArrayWriter(); field in class:SetupWriter 53 buf.write(b, off, len); 70 buf.writeTo(realWriter); 71 buf.reset();
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/tools/manifest/ |
H A D | Utils.java | 43 static byte[] buf = new byte[BUFFER_SIZE]; field in class:Utils 55 synchronized(buf){ 56 while (din.read(buf) != -1);
|
/forgerock/opendj2/ext/svnkit/lib/ |
H A D | jsch.agentproxy.usocket-nc-0.0.7.jar | ... int) throws java.io.IOException int j
byte[] buf
int s
int len
int _len
public void write (byte ... |
H A D | jna-3.5.2.jar | ... Class) com.sun.jna.Structure s
byte[] buf
com.sun.jna.Structure s
Object value ... |
H A D | jsch.agentproxy.usocket-jna-0.0.7.jar | ... int) throws java.io.IOException int i
byte[] buf
int s
int len
byte[] _buf
int _len
int _s ... |
/forgerock/opendj2-hg/ext/svnkit/lib/ |
H A D | jsch.agentproxy.usocket-nc-0.0.7.jar | ... int) throws java.io.IOException int j
byte[] buf
int s
int len
int _len
public void write (byte ... |
H A D | jna-3.5.2.jar | ... Class) com.sun.jna.Structure s
byte[] buf
com.sun.jna.Structure s
Object value ... |
H A D | jsch.agentproxy.usocket-jna-0.0.7.jar | ... int) throws java.io.IOException int i
byte[] buf
int s
int len
byte[] _buf
int _len
int _s ... |
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/java/com/sun/identity/diagnostic/plugin/services/tamper/ |
H A D | TamperDetectionUtils.java | 49 private static byte[] buf = new byte[BUFFER_SIZE]; field in class:TamperDetectionUtils 98 synchronized(buf){ 99 while (din.read(buf) != -1);
|
/forgerock/web-agents-v4/zlib/ |
H A D | gzwrite.c | 165 int ZEXPORT gzwrite(file, buf, len) 167 voidpc buf; 218 memcpy(state->in + have, buf, copy); 221 buf = (const char *)buf + copy; 234 strm->next_in = (z_const Bytef *)buf; 250 unsigned char buf[1]; local 286 buf[0] = c; 287 if (gzwrite(file, buf, 1) != 1)
|
H A D | gzlib.c | 36 static char buf[1024]; local 56 if (chars > sizeof (buf) - 1) { 57 chars = sizeof (buf) - 1; 61 wcstombs(buf, msgbuf, chars + 1); 65 sprintf(buf, "unknown win32 error (%ld)", error); 69 return buf;
|
H A D | gzread.c | 20 local int gz_load(state, buf, len, have) 22 unsigned char *buf; 30 ret = read(state->fd, buf + *have, len - *have); 288 int ZEXPORT gzread(file, buf, len) 290 voidp buf; 326 /* get len bytes to buf, or less than len if at the end */ 332 memcpy(buf, state->x.next, n); 356 if (gz_load(state, (unsigned char *)buf, len, &n) == -1) 363 strm->next_out = (unsigned char *)buf; 372 buf 391 unsigned char buf[1]; local [all...] |
H A D | ioapi.c | 88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size)); 89 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong size)); 132 static uLong ZCALLBACK fread_file_func (voidpf opaque, voidpf stream, void* buf, uLong size) argument 135 ret = (uLong)fread(buf, 1, (size_t)size, (FILE *)stream); 139 static uLong ZCALLBACK fwrite_file_func (voidpf opaque, voidpf stream, const void* buf, uLong size) argument 142 ret = (uLong)fwrite(buf, 1, (size_t)size, (FILE *)stream);
|
H A D | zutil.c | 222 voidpf buf = opaque; /* just to make some compilers happy */ local 229 buf = farmalloc(bsize); 230 if (*(ush*)&buf != 0) return buf; 232 buf = farmalloc(bsize + 16L); 234 if (buf == NULL || next_ptr >= MAX_PTR) return NULL; 235 table[next_ptr].org_ptr = buf; 238 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4; 239 *(ush*)&buf [all...] |
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/client/cli/ |
H A D | SecureConnectionCliParser.java | 324 * @param buf the LocalizableMessageBuilder to write the error messages. 327 public int validateGlobalOptions(LocalizableMessageBuilder buf) argument 329 int ret = secureArgsList.validateGlobalOptions(buf) ; 339 if (buf.length() > 0) 341 buf.append(LINE_SEPARATOR); 343 buf.append(message); 357 LocalizableMessageBuilder buf = new LocalizableMessageBuilder(); 358 int returnValue = validateGlobalOptions(buf); 359 printWrappedText(err, buf.toString());
|
/forgerock/opendj-b2.6/ext/svnkit/ |
H A D | jna.jar | ... .lang.Object, java.lang.Class) byte[] buf
com.sun.jna.Structure s
Object value ... |
/forgerock/opendj2.6.2/ext/svnkit/ |
H A D | jna.jar | ... .lang.Object, java.lang.Class) byte[] buf
com.sun.jna.Structure s
Object value ... |
/forgerock/opendj2/src/server/org/opends/server/admin/client/cli/ |
H A D | SecureConnectionCliArgs.java | 643 * @param buf the MessageBuilder to write the error messages. 646 public int validateGlobalOptions(MessageBuilder buf) argument 725 if (buf.length() > 0) 727 buf.append(EOL); 729 buf.append(error); 744 MessageBuilder buf = new MessageBuilder(); 745 int returnValue = validateGlobalOptions(buf); 746 if (buf.length() > 0) 748 err.println(wrapText(buf.toString(), MAX_LINE_WIDTH));
|
H A D | SecureConnectionCliParser.java | 371 * @param buf the MessageBuilder to write the error messages. 374 public int validateGlobalOptions(MessageBuilder buf) argument 376 int ret = secureArgsList.validateGlobalOptions(buf) ; 386 if (buf.length() > 0) 388 buf.append(EOL); 390 buf.append(message); 404 MessageBuilder buf = new MessageBuilder(); 405 int returnValue = validateGlobalOptions(buf); 406 if (buf.length() > 0) 408 err.println(wrapText(buf [all...] |
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/uninstaller/ |
H A D | UninstallerArgumentParser.java | 373 * @param buf the MessageBuilder to write the error messages. 376 public int validateGlobalOptions(MessageBuilder buf) argument 384 if (buf.length() > 0) 386 buf.append(EOL); 388 buf.append(message); 407 if (buf.length() > 0) 409 buf.append(EOL); 411 buf.append(message); 415 super.validateGlobalOptions(buf); 416 if (buf [all...] |