Searched refs:re (Results 1 - 25 of 145) sorted by relevance

123456

/forgerock/web-agents-v4/pcre/
H A Dpcre_refcount.c82 REAL_PCRE *re = (REAL_PCRE *)argument_re; local
83 if (re == NULL) return PCRE_ERROR_NULL;
84 if (re->magic_number != MAGIC_NUMBER) return PCRE_ERROR_BADMAGIC;
85 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
86 re->ref_count = (-adjust > re->ref_count)? 0 :
87 (adjust + re->ref_count > 65535)? 65535 :
88 re->ref_count + adjust;
89 return re->ref_count;
H A Dpcre_fullinfo.c82 const REAL_PCRE *re = (const REAL_PCRE *)argument_re; local
85 if (re == NULL || where == NULL) return PCRE_ERROR_NULL;
95 if (re->magic_number != MAGIC_NUMBER)
96 return re->magic_number == REVERSED_MAGIC_NUMBER?
101 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
106 *((unsigned long int *)where) = re->options & PUBLIC_COMPILE_OPTIONS;
110 *((size_t *)where) = re->size;
130 *((int *)where) = re->top_bracket;
134 *((int *)where) = re->top_backref;
139 ((re
[all...]
H A Dpcre_byte_order.c109 REAL_PCRE *re = (REAL_PCRE *)argument_re; local
120 if (re == NULL) return PCRE_ERROR_NULL;
121 if (re->magic_number == MAGIC_NUMBER)
123 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
124 re->tables = tables;
128 if (re->magic_number != REVERSED_MAGIC_NUMBER) return PCRE_ERROR_BADMAGIC;
129 if ((swap_uint32(re->flags) & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
131 re->magic_number = MAGIC_NUMBER;
132 re->size = swap_uint32(re
[all...]
H A Dpcre_study.c69 re compiled pattern block
82 find_minlength(const REAL_PCRE *re, const pcre_uchar *code, argument
133 d = find_minlength(re, cc, startcode, options, recurse_depth);
388 pcre_uchar *slot = (pcre_uchar *)re +
389 re->name_table_offset + GET2(cc, 1) * re->name_entry_size;
404 int dd = find_minlength(re, cs, startcode, options, recurse_depth);
407 slot += re->name_entry_size;
428 d = find_minlength(re, cs, startcode, options, recurse_depth);
481 branchlength += find_minlength(re, c
1427 const REAL_PCRE *re = (const REAL_PCRE *)external_re; local
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSAssertionManagerClient.java218 } catch (RemoteException re) {
220 FSUtils.debug.warning("AMC:getAssertion: " + artifact, re);
222 throw (new FSException(re.getMessage()));
223 } catch (FSRemoteException re) {
225 FSUtils.debug.warning("AMC:getAssertion: " + artifact, re);
227 throw (new FSException(re.getMessage()));
228 } catch (SAMLException re) {
230 FSUtils.debug.warning("AMC:getAssertion: " + artifact, re);
232 throw (new FSException(re.getMessage()));
233 } catch (Exception re) {
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSAssertionManagerClient.java218 } catch (RemoteException re) {
220 FSUtils.debug.warning("AMC:getAssertion: " + artifact, re);
222 throw (new FSException(re.getMessage()));
223 } catch (FSRemoteException re) {
225 FSUtils.debug.warning("AMC:getAssertion: " + artifact, re);
227 throw (new FSException(re.getMessage()));
228 } catch (SAMLException re) {
230 FSUtils.debug.warning("AMC:getAssertion: " + artifact, re);
232 throw (new FSException(re.getMessage()));
233 } catch (Exception re) {
[all...]
/forgerock/opendj-b2.6/tests/staf-tests/shared/python/
H A Dsnmp.py54 import re namespace
87 import re namespace
93 pattern = re.compile('dsApplIfProtocol\..*')
100 import re namespace
106 pattern = re.compile('dsApplIfProtocol\..*')
109 regexp = re.compile('^.*\.')
110 index = re.sub(regexp, '', key)
/forgerock/opendj2/tests/staf-tests/shared/python/
H A Dsnmp.py53 import re namespace
86 import re namespace
92 pattern = re.compile('dsApplIfProtocol\..*')
99 import re namespace
105 pattern = re.compile('dsApplIfProtocol\..*')
108 regexp = re.compile('^.*\.')
109 index = re.sub(regexp, '', key)
/forgerock/opendj2.6.2/tests/staf-tests/shared/python/
H A Dsnmp.py54 import re namespace
87 import re namespace
93 pattern = re.compile('dsApplIfProtocol\..*')
100 import re namespace
106 pattern = re.compile('dsApplIfProtocol\..*')
109 regexp = re.compile('^.*\.')
110 index = re.sub(regexp, '', key)
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/python/
H A Dsnmp.py54 import re namespace
87 import re namespace
93 pattern = re.compile('dsApplIfProtocol\..*')
100 import re namespace
106 pattern = re.compile('dsApplIfProtocol\..*')
109 regexp = re.compile('^.*\.')
110 index = re.sub(regexp, '', key)
/forgerock/opendj2-hg/tests/staf-tests/shared/python/
H A Dsnmp.py53 import re namespace
86 import re namespace
92 pattern = re.compile('dsApplIfProtocol\..*')
99 import re namespace
105 pattern = re.compile('dsApplIfProtocol\..*')
108 regexp = re.compile('^.*\.')
109 index = re.sub(regexp, '', key)
/forgerock/openam-v13/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandlerTest.java49 ResourceException re = mappingHandler.handleError(new ScriptException(errorCode));
52 assertNotNull(re);
53 assertNotNull(re.getMessage());
54 assertTrue(isClientError(re.getCode()) || re.isServerError());
66 ResourceException re = mappingHandler.handleError(serverContext, null, new ScriptException(errorCode));
69 assertNotNull(re);
70 // assertEquals("Test message", re.getMessage()); //TODO dont get this...
/forgerock/openam/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandlerTest.java49 ResourceException re = mappingHandler.handleError(new ScriptException(errorCode));
52 assertNotNull(re);
53 assertNotNull(re.getMessage());
54 assertTrue(isClientError(re.getCode()) || re.isServerError());
66 ResourceException re = mappingHandler.handleError(serverContext, null, new ScriptException(errorCode));
69 assertNotNull(re);
70 // assertEquals("Test message", re.getMessage()); //TODO dont get this...
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DAssertionManagerClient.java146 } catch (RemoteException re) {
149 "RemoteException.", re);
279 } catch (Exception re) {
281 SAMLUtils.debug.warning("AMC:createAssertion(SSO)", re);
283 throw (new SAMLException(re.getMessage()));
322 } catch (Exception re) {
324 SAMLUtils.debug.warning("AMC:createAssertion(SSO, attrs)", re);
326 throw (new SAMLException(re.getMessage()));
359 } catch (Exception re) {
361 SAMLUtils.debug.warning("AMC:createAssertionArtifact:", re);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DAssertionManagerClient.java146 } catch (RemoteException re) {
149 "RemoteException.", re);
279 } catch (Exception re) {
281 SAMLUtils.debug.warning("AMC:createAssertion(SSO)", re);
283 throw (new SAMLException(re.getMessage()));
322 } catch (Exception re) {
324 SAMLUtils.debug.warning("AMC:createAssertion(SSO, attrs)", re);
326 throw (new SAMLException(re.getMessage()));
359 } catch (Exception re) {
361 SAMLUtils.debug.warning("AMC:createAssertionArtifact:", re);
[all...]
/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/modules/
H A DAugmentationScriptExecutor.java85 final ResourceException re = e.toResourceException(ResourceException.INTERNAL_ERROR, e.getMessage());
86 logger.error("{} when attempting to execute script {}", re.toString(), augmentScript.getName(), re);
87 throw new AuthenticationException(re.getMessage(), re);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/jaxrpc/
H A DSMSJAXRPCObject.java127 } catch (Exception re) {
128 debug.error("SMSJAXRPCObject:read -- Exception:", re);
129 throw (new SMSException(re, "sms-JAXRPC-cannot-read"));
148 } catch (Exception re) {
149 debug.error("SMSJAXRPCObject:create -- Exception:", re);
150 throw (new SMSException(re, "sms-JAXRPC-cannot-create"));
168 } catch (Exception re) {
169 debug.error("SMSJAXRPCObject:modify -- Exception:", re);
170 throw (new SMSException(re, "sms-JAXRPC-cannot-modify"));
187 } catch (Exception re) {
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/jaxrpc/
H A DSMSJAXRPCObject.java129 } catch (Exception re) {
130 debug.error("SMSJAXRPCObject:read -- Exception:", re);
131 throw (new SMSException(re, "sms-JAXRPC-cannot-read"));
150 } catch (Exception re) {
151 debug.error("SMSJAXRPCObject:create -- Exception:", re);
152 throw (new SMSException(re, "sms-JAXRPC-cannot-create"));
170 } catch (Exception re) {
171 debug.error("SMSJAXRPCObject:modify -- Exception:", re);
172 throw (new SMSException(re, "sms-JAXRPC-cannot-modify"));
189 } catch (Exception re) {
[all...]
/forgerock/openidm-v4/openidm-api-servlet/src/main/java/org/forgerock/openidm/servlet/internal/
H A DIDMSecurityContextFactory.java127 ResourceException re = Utils.adapt(t);
129 new Object[] { augmentScript.getName().getName(), re.getDetail(), re });
130 throw re;
H A DScriptedFilter.java204 ResourceException re = Utils.adapt(e);
205 logger.debug("ResourceException detail: " + re.getDetail());
206 return re.asPromise();
229 ResourceException re = Utils.adapt(e);
230 logger.debug("ResourceException detail: " + re.getDetail());
231 return re.asPromise();
253 ResourceException re = Utils.adapt(e);
254 logger.debug("ResourceException detail: " + re.getDetail());
255 return re.asPromise();
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/agentconfig/model/
H A DAgentDumpModelImpl.java59 } catch (IdRepoException re) {
60 throw new AMConsoleException(re.getMessage());
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/agentconfig/model/
H A DAgentDumpModelImpl.java59 } catch (IdRepoException re) {
60 throw new AMConsoleException(re.getMessage());
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java495 * @param re
499 ResourceException re)
501 response.setStatus(re.getCode());
503 if (re.getCode() == HttpServletResponse.SC_UNAUTHORIZED
514 response.getOutputStream().println(toJSON(prettyPrint, re));
531 * @param re
536 private String toJSON(boolean prettyPrint, ResourceException re) argument
542 sb.append("\"code\": ").append(re.getCode()).append(",");
544 sb.append("\"message\": \"").append(re.getMessage()).append("\",");
546 sb.append("\"reason\": \"").append(re
498 sendErrorReponse(HttpServletResponse response, boolean prettyPrint, ResourceException re) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java483 * @param re
487 ResourceException re)
489 response.setStatus(re.getCode());
491 if (re.getCode() == HttpServletResponse.SC_UNAUTHORIZED
502 response.getOutputStream().println(toJSON(prettyPrint, re));
519 * @param re
524 private String toJSON(boolean prettyPrint, ResourceException re) argument
530 sb.append("\"code\": ").append(re.getCode()).append(",");
532 sb.append("\"message\": \"").append(re.getMessage()).append("\",");
534 sb.append("\"reason\": \"").append(re
486 sendErrorReponse(HttpServletResponse response, boolean prettyPrint, ResourceException re) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java484 * @param re
488 ResourceException re)
490 response.setStatus(re.getCode());
492 if (re.getCode() == HttpServletResponse.SC_UNAUTHORIZED
503 response.getOutputStream().println(toJSON(prettyPrint, re));
520 * @param re
525 private String toJSON(boolean prettyPrint, ResourceException re) argument
531 sb.append("\"code\": ").append(re.getCode()).append(",");
533 sb.append("\"message\": \"").append(re.getMessage()).append("\",");
535 sb.append("\"reason\": \"").append(re
487 sendErrorReponse(HttpServletResponse response, boolean prettyPrint, ResourceException re) argument
[all...]

Completed in 420 milliseconds

123456