code
stringlengths
73
34.1k
label
stringclasses
1 value
private Object executeBatch(Object implObject, Method method, Object[] args) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, SQLException { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.is...
java
private Object getReturnResultSet(Object implObject, Method method) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, SQLException { final boolean trace = TraceComponent.isAnyTracingEnabled(); if (trace && tc.isEntryEnabled()) ...
java
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { if (!haveStatementPropertiesChanged && VENDOR_PROPERTY_SETTERS.contains(method.getName())) { haveStatementPropertiesChanged = true; } // The SQLJ programming model indicates that getSection s...
java
public void nextRangeMaximumAvailable() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "nextRangeMaximumAvailable"); synchronized (_globalUniqueLock) { _globalUniqueThreshold = _globalUniqueLimit + _midrange; _globalUniqueLimit ...
java
public byte[] transform(ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) throws IllegalClassFormatException { // Don't mo...
java
public String resolveString(String value, boolean ignoreWarnings) throws ConfigEvaluatorException { value = variableEvaluator.resolveVariables(value, this, ignoreWarnings); return value; }
java
@SuppressWarnings("unchecked") public void init() throws ServletException { // Method re-written for PQ47469 String servlets = getRequiredInitParameter(PARAM_SERVLET_PATHS); StringTokenizer sTokenizer = new StringTokenizer(servlets); Vector servletChainPath = new Vector(); while (sTokenizer.hasMoreTokens() ==...
java
public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // Method re-written for PQ47469 ServletChain chain = new ServletChain(); try { String path = null; for (int index = 0; index < this.chainPath.length; ++index) { path = this.chainPath[in...
java
String getRequiredInitParameter(String name) throws ServletException { String value = getInitParameter(name); if (value == null) { throw new ServletException(MessageFormat.format(nls.getString("Missing.required.initialization.parameter","Missing required initialization parameter: {0}"), new ...
java
private void initializePermissions() { // Set the default restrictable permissions int count = 0; if (tc.isDebugEnabled()) { if (isServer) { Tr.debug(tc, "running on server "); } else { Tr.debug(tc, "running on client "); } ...
java
@Override public PermissionCollection getCombinedPermissions(PermissionCollection staticPolicyPermissionCollection, CodeSource codesource) { Permissions effectivePermissions = new Permissions(); List<Permission> staticPolicyPermissions = Collections.list(staticPolicyPermissionCollection.elements());...
java
private boolean isRestricted(Permission permission) { for (Permission restrictedPermission : restrictablePermissions) { if (restrictedPermission.implies(permission)) { return true; } } return false; }
java
public void addPermissionsXMLPermission(CodeSource codeSource, Permission permission) { ArrayList<Permission> permissions = null; String codeBase = codeSource.getLocation().getPath(); if (!isRestricted(permission)) { if (permissionXMLPermissionMap.containsKey(codeBase)) { ...
java
public NonDelayedClassInfo getClassInfo() { String useName = getName(); NonDelayedClassInfo useClassInfo = this.classInfo; if (useClassInfo != null) { if (!useClassInfo.isJavaClass() && !(useClassInfo.isAnnotationPresent() || useClassInfo.isFieldA...
java
protected void intialiseNonPersistent(MultiMEProxyHandler proxyHandler, Neighbours neighbours) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "intialiseNonPersistent"); iProxyHandler = proxyHandler; iNeighbours = neighbours...
java
public final SIBUuid8 getUUID() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getUUID"); SibTr.exit(tc, "getUUID", iMEUuid); } return iMEUuid; }
java
public final String getBusId() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getBusId"); SibTr.exit(tc, "getBusId", iBusId); } return iBusId; }
java
BusGroup getBus() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getBus"); SibTr.exit(tc, "getBus", iBusGroup); } return iBusGroup; }
java
void setBus(BusGroup busGroup) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "setBus"); iBusGroup = busGroup; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(tc, "setBus"); }
java
private synchronized void createProducerSession() throws SIResourceException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "createProducerSession"); if (iProducerSession == null) { try { iProducerSession = (ProducerSessionImpl) ...
java
MESubscription proxyRegistered(SIBUuid12 topicSpaceUuid, String localTopicSpaceName, String topic, String foreignTSName, Transaction transaction, boolean f...
java
protected void removeSubscription(SIBUuid12 topicSpace, String topic) { // Generate a key for the topicSpace/topic final String key = BusGroup.subscriptionKey(topicSpace, topic); iProxies.remove(key); }
java
MESubscription proxyDeregistered(SIBUuid12 topicSpace, String topic, Transaction transaction) throws SIResourceException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "proxyDeregistered", ne...
java
protected void addSubscription(SIBUuid12 topicSpace, String topic, MESubscription subscription) { // Generate a key for the topicSpace/topic final String key = BusGroup.subscriptionKey(topicSpace, topic); iProxies.put(key, subscription); }
java
protected MESubscription getSubscription(SIBUuid12 topicSpace, String topic) { return (MESubscription)iProxies.get(BusGroup.subscriptionKey(topicSpace, topic)); }
java
void markAllProxies() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "markAllProxies"); final Enumeration enu = iProxies.elements(); // Cycle through each of the proxies while (enu.hasMoreElements()) { final MESubscription sub = (MESubscription) en...
java
void sweepMarkedProxies( List topicSpaces, List topics, Transaction transaction, boolean okToForward) throws SIResourceException, SIException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "sweepMarkedProxies", new Object[] { ...
java
void sendToNeighbour(JsMessage message, Transaction transaction) throws SIResourceException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "sendToNeighbour", new Object[] { message, transaction }); if (iProducerSession == null) createProducerSession(); ...
java
protected void recoverSubscriptions(MultiMEProxyHandler proxyHandler) throws MessageStoreException, SIResourceException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "recoverSubscriptions", proxyHandler); iProxyHandler = proxyHandler; iProxies = new Hashtable()...
java
protected void deleteDestination() throws SIConnectionLostException, SIResourceException, SIErrorException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "deleteDestination"); // If the producer session hasn't been closed, close it now synchronized(this) { ...
java
protected void addPubSubOutputHandler(PubSubOutputHandler handler) { if (iPubSubOutputHandlers == null) iPubSubOutputHandlers = new HashSet(); // Add the PubSubOutputHandler to the list that this neighbour // knows about. This is so a recovered neighbour can add the list of // output handlers ...
java
void setRequestedProxySubscriptions() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "setRequestedProxySubscriptions"); MPAlarmManager manager = iProxyHandler.getMessageProcessor().getAlarmManager(); iAlarm = manager.create(REQUEST_TIMER, this); synchronized...
java
void setRequestedProxySubscriptionsResponded() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "setRequestedProxySubscriptionsResponded"); synchronized (this) { iRequestSent = false; if (!iAlarmCancelled) iAlarm.cancel(); iAlarmCancelle...
java
boolean wasProxyRequestSent() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "wasProxyRequestSent"); SibTr.exit(tc, "wasProxyRequestSent", new Boolean(iRequestSent)); } return iRequestSent; }
java
protected void deleteSystemDestinations() throws SIConnectionLostException, SIResourceException, SIErrorException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "deleteSystemDestinations"); // If the producer session hasn't been closed, close it now synchronize...
java
private boolean checkForeignSecurityAttributesChanged(MESubscription sub, boolean foreignSecuredProxy, String MESubUserId) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "checkForeignSecurityAttributesChan...
java
synchronized void resetListFailed() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "resetListFailed"); iRequestFailed = true; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(tc, "resetListFailed"); }
java
@Override public boolean isDeclaredAnnotationWithin(Collection<String> annotationNames) { if (declaredAnnotations != null) { for (AnnotationInfo annotation : declaredAnnotations) { if (annotationNames.contains(annotation.getAnnotationClassName())) { return tru...
java
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { ObjectInputStream.GetField getField = s.readFields(); version = getField.get("version", 1); resourceAdapterKey = (String) getField.get("resourceAdapterKey", null); }
java
private void writeObject(ObjectOutputStream s) throws IOException { ObjectOutputStream.PutField putField = s.putFields(); putField.put("version", version); putField.put("resourceAdapterKey", resourceAdapterKey); s.writeFields(); }
java
static void notifyTimeout() { if (tc.isEntryEnabled()) Tr.entry(tc, "notifyTimeout"); synchronized(SUSPEND_LOCK) { // Check if there are any outstanding suspends if (_tokenManager.isResumable()) { if (tc.isEventEnabled()) Tr.e...
java
protected synchronized final Transaction getExternalTransaction() { final String methodName = "getExternalTransaction"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass, methodName); Transaction ...
java
protected synchronized void requestCallback(Token token, Transaction transaction) throws ObjectManagerException { final String methodName = "requestCallback"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) ...
java
protected synchronized void addFromCheckpoint(ManagedObject managedObject, Transaction transaction) throws ObjectManagerException { final String methodName = "addFromCheckpoint"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabl...
java
protected synchronized void replaceFromCheckpoint(ManagedObject managedObject, byte[] serializedBytes, Transaction transaction) throws ObjectManagerException { final String methodName ...
java
protected synchronized void prepare(Transaction transaction) throws ObjectManagerException { if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass , "prepare" , "transaction=" + transaction + "(Tr...
java
protected void commit(boolean reUse, Transaction transaction) throws ObjectManagerException { if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass , "commit" , new Object[] ...
java
protected void backout(boolean reUse, Transaction transaction) throws ObjectManagerException { final String methodName = "backout"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass, methodName, new Object[] {...
java
void preBackout(Transaction transaction) throws ObjectManagerException { final String methodName = "preBackout"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass, methodName, new Object[] { transaction }); // Allow any last mi...
java
private final void complete(boolean reUse, Transaction transaction) throws ObjectManagerException { final String methodName = "complete"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass, methodName, new...
java
protected synchronized void terminate(int reason) throws ObjectManagerException { final String methodName = "terminate"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass, methodName, new Object[] { new Integer(reason) }); if (...
java
protected synchronized void shutdown() throws ObjectManagerException { if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass , "shutDown" ); setState(nextStateForShutdown); //...
java
protected final void setRequiresCheckpoint() { final String methodName = "setRequiresCheckpoint"; if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass, methodName, new Object[] { new ...
java
protected synchronized void checkpoint(long forcedLogSequenceNumber) throws ObjectManagerException { if (Tracing.isAnyTracingEnabled() && trace.isEntryEnabled()) trace.entry(this, cclass , "checkpoint" , new Object[] { new Long(...
java
@Override public void afterCompletion(int status) { if (status == Status.STATUS_COMMITTED) { Boolean previous = persistentExecutor.inMemoryTaskIds.put(taskId, Boolean.TRUE); if (previous == null) { long delay = expectedExecTime - new Date().getTime(); ...
java
@FFDCIgnore(Throwable.class) @Sensitive private byte[] serializeResult(Object result, ClassLoader loader) throws IOException { try { return persistentExecutor.serialize(result); } catch (Throwable x) { return persistentExecutor.serialize(new TaskFailure(x, loader, persist...
java
protected Converter createConverter(FaceletContext ctx) throws FacesException, ELException, FaceletException { return ctx.getFacesContext().getApplication().createConverter(NumberConverter.CONVERTER_ID); }
java
public void queueDataReceivedInvocation(Connection connection, ReceiveListener listener, WsByteBuffer data, int segmentType, int request...
java
public static ReceiveListenerDispatcher getInstance(Conversation.ConversationType convType, boolean isOnClientSide) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getInstance", new Object[] {""+convType, ""+isOnClientSide}); ...
java
public static boolean isCommandLine() { String output = AccessController.doPrivileged(new PrivilegedAction<String>() { @Override public String run() { return System.getProperty("wlp.process.type"); } }); boolean value = true; if (output...
java
public static String getInstallRoot() { return AccessController.doPrivileged(new PrivilegedAction<String>() { @Override public String run() { String output = System.getProperty("wlp.install.dir"); if (output == null) { output = System.g...
java
public static ResourceBundle getResourceBundle(File location, String name, Locale locale) { File[] files = new File[] { new File(location, name + "_" + locale.toString() + RESOURCE_FILE_EXT), new File(location, name + "_" + locale.getLanguage() + RESOURCE_FILE_EXT), ...
java
public static List<CustomManifest> findCustomEncryption(String extension) throws IOException { List<File> dirs = listRootAndExtensionDirectories(); return findCustomEncryption(dirs, TOOL_EXTENSION_DIR + extension); }
java
protected static List<CustomManifest> findCustomEncryption(List<File> rootDirs, String path) throws IOException { List<CustomManifest> list = new ArrayList<CustomManifest>(); for (File dir : rootDirs) { dir = new File(dir, path); if (exists(dir)) { File[] files = ...
java
@Override public NetworkTransportFactory getNetworkTransportFactory() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getNetworkTransportFactory"); NetworkTransportFactory factory = new RichClientTransportFactory(framework); if (Trace...
java
@Override public Map getOutboundConnectionProperties(String outboundTransportName) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getOutboundConnectionProperties", outboundTransportName); ChainData chainData = framew...
java
@Override public Map getOutboundConnectionProperties(Object ep) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getOutboundConnectionProperties", ep); Map properties = null; if (ep instanceof CFEndPoint) { Outboun...
java
@Override public InetAddress getHostAddress(Object endPoint) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getHostAddress", endPoint); InetAddress address = null; if (endPoint instanceof CFEndPoint) { address = ...
java
@Override public int getHostPort(Object endPoint) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getHostPort", endPoint); int port = 0; if (endPoint instanceof CFEndPoint) { port = ((CFEndPoint) endPoint).getPort...
java
@Override public boolean areEndPointsEqual(Object ep1, Object ep2) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "areEndPointsEqual", new Object[] { ep1, ep2 }); boolean isEqual = false; if (ep1 instanceof CFEndPoint && ep2 instanc...
java
@Override public int getEndPointHashCode(Object ep) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getEndPointHashCode", ep); int hashCode = 0; if (ep instanceof CFEndPoint) { CFEndPoint cfEndPoint = (CFEndPoint)...
java
private CFEndPoint cloneEndpoint(final CFEndPoint originalEndPoint) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "cloneEndpoint", originalEndPoint); CFEndPoint endPoint; ByteArrayOutputStream baos = null; ObjectOutputStream out...
java
private Throwable getCause(Throwable t) { Throwable cause = t.getCause(); if (t.getCause() != null) { return cause; } else { return t; } }
java
public String traceLogFormat(LogRecord logRecord, Object id, String formattedMsg, String formattedVerboseMsg) { final String txt; if (formattedVerboseMsg == null) { // If we don't already have a formatted message... (for Audit or Info or Warning.. ) // we have to build something ...
java
private Object formatVerboseObj(Object obj) { // Make sure that we don't truncate any stack traces during verbose logging if (obj instanceof TruncatableThrowable) { TruncatableThrowable truncatable = (TruncatableThrowable) obj; final Throwable wrappedException = truncatable.getW...
java
protected String formatStreamOutput(GenericData genData) { String txt = null; String loglevel = null; KeyValuePair kvp = null; KeyValuePair[] pairs = genData.getPairs(); for (KeyValuePair p : pairs) { if (p != null && !p.isList()) { kvp = p; ...
java
private void createTimeout(IAbstractAsyncFuture future, long delay, boolean isRead) { if (AsyncProperties.disableTimeouts) { return; } // create the timeout time, while not holding the lock long timeoutTime = (System.currentTimeMillis() + delay + Timer...
java
public void refresh() { this.productProperties = new Properties(); FileInputStream fis = null; try { fis = new FileInputStream(new File(this.installDir, PRODUCT_PROPERTIES_PATH)); this.productProperties.load(fis); } catch (Exception e) { } finally { ...
java
public static RequestMetadata getRequestMetadata() { RequestMetadata metadata = threadLocal.get(); if (metadata == null) metadata = getNoMetadata(); return metadata; }
java
public void initialize(int[] bufferEntrySizes, int[] bufferEntryDepths) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { Tr.entry(tc, "initialize"); } // order both lists from smallest to largest, based only on Entry Sizes int len = bufferEntrySizes.lengt...
java
public void setLeakDetectionSettings(int interval, String output) throws IOException { this.leakDetectionInterval = interval; this.leakDetectionOutput = TrConfigurator.getLogLocation() + File.separator + output; if ((interval > -1) && (output != null)) { // clear file Fi...
java
@Override public WsByteBuffer allocateFileChannelBuffer(FileChannel fc) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) { Tr.debug(tc, "allocateFileChannelBuffer"); } return new FCWsByteBufferImpl(fc); }
java
protected WsByteBufferImpl allocateBufferDirect(WsByteBufferImpl buffer, int size, boolean overrideRefCount) { DirectByteBufferHelper directByteBufferHelper = this.directByteBufferHelper.get(); ByteBuffer byteBuffer; if (directByteBufferHelper ...
java
protected void releasing(ByteBuffer buffer) { if (buffer != null && buffer.isDirect()) { DirectByteBufferHelper directByteBufferHelper = this.directByteBufferHelper.get(); if (directByteBufferHelper != null) { directByteBufferHelper.releaseDirectByteBuffer(buffer); ...
java
public String debug() { String data = null; StringBuffer sb = new StringBuffer(); sb.append("ConsumerProperties"); sb.append("\n"); sb.append("------------------"); sb.append("\n"); sb.append("Destination: "); sb.append(getJmsDestination()); sb.append("\n"); ...
java
private Pattern loadAcceptPattern(ExternalContext context) { assert context != null; String mappings = context.getInitParameter(ViewHandler.FACELETS_VIEW_MAPPINGS_PARAM_NAME); if (mappings == null) { return null; } // Make sure the mappings contain somet...
java
private String toRegex(String mappings) { assert mappings != null; // Get rid of spaces mappings = mappings.replaceAll("\\s", ""); // Escape '.' mappings = mappings.replaceAll("\\.", "\\\\."); // Change '*' to '.*' to represent any match mappings = mappings...
java
protected void prepareConduitSelector(Message message, URI currentURI, boolean proxy) { try { cfg.prepareConduitSelector(message); } catch (Fault ex) { LOG.warning("Failure to prepare a message from conduit selector"); } message.getExchange().put(ConduitSelector....
java
@Override public boolean isCorruptOrIndoubt() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "isCorruptOrIndoubt"); boolean isCorruptOrIndoubt = _targetDestinationHandler.isCorruptOrIndoubt(); if (TraceComponent.isAnyTracingEnabled() && t...
java
public void delete() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "delete"); //Tell the target of the alias to remove the backwards reference to it _targetDestinationHandler.removeTargettingAlias(this); if (TraceComponent.isAnyTracing...
java
protected void setLayoutToPrimary(int segmentLength, int priority, boolean isPooled, boolean isExchange, int packetNumber, int segmentT...
java
protected void setLayoutToConversation(int segmentLength, int priority, boolean isPooled, boolean isExchange, int packetNumber, ...
java
protected void setLayoutToStartSegment(int segmentLength, int priority, boolean isPooled, boolean isExchange, int packetNumber, ...
java
protected void setLayoutToMiddleSegment(int segmentLength, int priority, boolean isPooled, boolean isExchange, int packetNumber, ...
java
protected void setLayoutToEndSegment(int segmentLength, int priority, boolean isPooled, boolean isExchange, int packetNumber, ...
java
protected boolean isPooledBuffers() { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "isPooledBuffers"); if (tc.isEntryEnabled()) SibTr.exit(this, tc, "isPooledBuffers", ""+primaryHeaderFields.isPooled); return primaryHeaderFields.isPooled; }
java
protected boolean isUserRequest() { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "isUserRequest"); if (tc.isEntryEnabled()) SibTr.exit(this, tc, "isUserRequest", ""+isUserRequest); return isUserRequest; }
java
protected boolean isTerminal() { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "isTermainl"); if (tc.isEntryEnabled()) SibTr.exit(this, tc, "isTermainl", ""+isTerminal); return isTerminal; }
java
private boolean buildHeader(HeaderFields headerFields, WsByteBuffer xmitBuffer) { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "buildHeader", new Object[] {headerFields, xmitBuffer}); if (tc.isDebugEnabled()) JFapUtils.debugTraceWsByteBufferInfo(this, tc, xmitBuffer, "xmitBuffer"); boolean...
java
private boolean buildPayload(WsByteBuffer xmitBuffer) { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "buildPayload", xmitBuffer); if (tc.isDebugEnabled()) JFapUtils.debugTraceWsByteBufferInfo(this, tc, xmitBuffer, "xmitBuffer"); boolean payloadFinished = false; int amountCopied, amou...
java