Searched defs:flags (Results 1 - 25 of 92) sorted by relevance

1234

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DState.java60 * Bit-field containing possible flags that an index can have
61 * When adding flags, ensure that its value fits on a single bit.
95 * Fetch index flags from the tree.
98 * @return The flags of the index in the tree or an empty set if no index has no flags.
111 * Ensure that the specified flags are set for the given index
114 * @param flags The flags to add to the provided index
115 * @return true if the flags have been updated
116 * @throws NullPointerException if txn, index or flags i
119 addFlagsToIndex(WriteableTransaction txn, TreeName indexTreeName, final IndexFlag... flags) argument
153 encodeFlags(EnumSet<IndexFlag> flags) argument
169 removeFlagsFromIndex(WriteableTransaction txn, TreeName indexTreeName, final IndexFlag... flags) argument
[all...]
/forgerock/opendj2/src/messages/src/org/opends/messages/
H A DMessage.java374 * @param flags
375 * The flags modify the output format. The value is interpreted as
376 * a bitmask. Any combination of the following flags may be set:
379 * java.util.FormattableFlags#ALTERNATE}. If no flags are set, the
406 public void formatTo(Formatter formatter, int flags, argument
410 // Ignores flags, width and precission for now.
/forgerock/opendj-b2.6/src/messages/src/org/opends/messages/
H A DMessage.java375 * @param flags
376 * The flags modify the output format. The value is interpreted as
377 * a bitmask. Any combination of the following flags may be set:
380 * java.util.FormattableFlags#ALTERNATE}. If no flags are set, the
407 public void formatTo(Formatter formatter, int flags, argument
411 // Ignores flags, width and precission for now.
/forgerock/opendj2.6.2/src/messages/src/org/opends/messages/
H A DMessage.java375 * @param flags
376 * The flags modify the output format. The value is interpreted as
377 * a bitmask. Any combination of the following flags may be set:
380 * java.util.FormattableFlags#ALTERNATE}. If no flags are set, the
407 public void formatTo(Formatter formatter, int flags, argument
411 // Ignores flags, width and precission for now.
/forgerock/opendj2-hg/src/messages/src/org/opends/messages/
H A DMessage.java374 * @param flags
375 * The flags modify the output format. The value is interpreted as
376 * a bitmask. Any combination of the following flags may be set:
379 * java.util.FormattableFlags#ALTERNATE}. If no flags are set, the
406 public void formatTo(Formatter formatter, int flags, argument
410 // Ignores flags, width and precission for now.
/forgerock/opendj2-jel-hg/src/messages/src/org/opends/messages/
H A DMessage.java375 * @param flags
376 * The flags modify the output format. The value is interpreted as
377 * a bitmask. Any combination of the following flags may be set:
380 * java.util.FormattableFlags#ALTERNATE}. If no flags are set, the
407 public void formatTo(Formatter formatter, int flags, argument
411 // Ignores flags, width and precission for now.
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/backends/pluggable/
H A DStateTest.java204 private void createFlagWith(IndexFlag... flags) throws Exception argument
207 addFlags(flags);
214 private void addFlags(final IndexFlag... flags) throws Exception argument
221 state.addFlagsToIndex(txn, indexTreeName, flags);
226 private void removeFlags(final IndexFlag... flags) throws Exception argument
233 state.removeFlagsFromIndex(txn, indexTreeName, flags);
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeOAuth2AuthModulesStep.java103 private void flagModule(Map<String, Set<String>> flags, String realm, String moduleName) { argument
104 if (flags.containsKey(realm)) {
105 flags.get(realm).add(moduleName);
107 flags.put(realm, asSet(moduleName));
163 private String getModulesReport(String messageKey, String delimiter, Map<String, Set<String>> flags) { argument
164 if (flags.isEmpty()) {
170 for (Map.Entry<String, Set<String>> entry : flags.entrySet()) {
/forgerock/web-agents-v4/zlib/
H A Dzutil.c37 uLong flags; local
39 flags = 0;
42 case 4: flags += 1; break;
43 case 8: flags += 2; break;
44 default: flags += 3;
48 case 4: flags += 1 << 2; break;
49 case 8: flags += 2 << 2; break;
50 default: flags += 3 << 2;
54 case 4: flags += 1 << 4; break;
55 case 8: flags
[all...]
H A Dinflate.h22 FLAGS, /* i: waiting for method and flags (gzip) */
24 OS, /* i: waiting for extra flags and operating system (gzip) */
86 int flags; /* gzip header method and flags (0 if zlib) */ member in struct:inflate_state
/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/java/org/forgerock/openidm/tools/scriptedbundler/
H A DCustomObjectTypeProperty.java43 * "flags" : [
80 private List<CustomObjectTypePropertyFlag> flags = new ArrayList<CustomObjectTypePropertyFlag>(); field in class:CustomObjectTypeProperty
123 * Template utility method to return a formatted string representing the flags on an object.
192 * Return the flags for this property.
197 return flagLast(flags);
201 * Set the flags for this property.
203 * @param flags
205 public void setFlags(List<CustomObjectTypePropertyFlag> flags) { argument
206 this.flags.clear();
207 this.flags
[all...]
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/commons/
H A DAttributeInfoHelper.java81 private final Set<AttributeFlag> flags; field in class:AttributeInfoHelper
143 // flags
165 flags = Collections.unmodifiableSet(flags0);
167 flags = Collections.emptySet();
178 flags = null;
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeOAuth2AuthModulesStep.java103 private void flagModule(Map<String, Set<String>> flags, String realm, String moduleName) { argument
104 if (flags.containsKey(realm)) {
105 flags.get(realm).add(moduleName);
107 flags.put(realm, asSet(moduleName));
163 private String getModulesReport(String messageKey, String delimiter, Map<String, Set<String>> flags) { argument
164 if (flags.isEmpty()) {
170 for (Map.Entry<String, Set<String>> entry : flags.entrySet()) {
/forgerock/web-agents-v4/source/
H A Dhttp_parser.h139 /* Flag values for http_parser.flags field */
140 enum flags enum
214 unsigned int flags : 7; /* F_* values from 'flags' enum; semi-public */ member in struct:http_parser
H A Dnet_client.c596 int status = 0, sent = 0, flags = 0; local
618 flags |= MSG_NOSIGNAL;
622 int rv = send(n->sock, buf + sent, (int) len - sent, flags);
H A Dthread.c677 u_short flags = EV_ADD | EV_ENABLE; local
684 flags |= EV_ONESHOT;
688 EV_SET(&ch, 1, EVFILT_TIMER, flags, NOTE_SECONDS, e->interval, NULL);
693 if (n <= 0 || (ev.flags & EV_ERROR)) {
/forgerock/web-agents-v4/pcre/
H A Dpcre_dfa_exec.c3226 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
3245 unsigned long int flags = extra_data->flags; local
3246 if ((flags & PCRE_EXTRA_STUDY_DATA) != 0)
3248 if ((flags & PCRE_EXTRA_MATCH_LIMIT) != 0) return PCRE_ERROR_DFA_UMLIMIT;
3249 if ((flags & PCRE_EXTRA_MATCH_LIMIT_RECURSION) != 0)
3251 if ((flags & PCRE_EXTRA_CALLOUT_DATA) != 0)
3253 if ((flags & PCRE_EXTRA_TABLES) != 0)
3374 /* The "must be at the start of a line" flags are used in a loop when finding
3377 startline = (re->flags
[all...]
H A Dpcre.h311 /* Bit flags for the pcre[16|32]_extra structure. Do not re-arrange or redefine
377 unsigned long int flags; /* Bits for which fields are set */ member in struct:pcre_extra
390 unsigned long int flags; /* Bits for which fields are set */ member in struct:pcre16_extra
403 unsigned long int flags; /* Bits for which fields are set */ member in struct:pcre32_extra
H A Dpcre_exec.c6241 #undef flags macro
6413 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
6466 && (extra_data->flags & (PCRE_EXTRA_EXECUTABLE_JIT |
6504 unsigned long int flags = extra_data->flags; local
6505 if ((flags & PCRE_EXTRA_STUDY_DATA) != 0)
6507 if ((flags & PCRE_EXTRA_MATCH_LIMIT) != 0)
6509 if ((flags & PCRE_EXTRA_MATCH_LIMIT_RECURSION) != 0)
6511 if ((flags & PCRE_EXTRA_CALLOUT_DATA) != 0)
6513 if ((flags
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java349 * Return the display flags.
350 * @return the display flags.
358 * Set the display flags and call startRefresh().
359 * @param flags the display flags to be set.
361 public void setDisplayFlags(int flags) { argument
362 displayFlags = flags;
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java372 * Return the display flags.
373 * @return the display flags.
381 * Set the display flags and call startRefresh().
382 * @param flags the display flags to be set.
384 public void setDisplayFlags(int flags) { argument
385 displayFlags = flags;
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java372 * Return the display flags.
373 * @return the display flags.
381 * Set the display flags and call startRefresh().
382 * @param flags the display flags to be set.
384 public void setDisplayFlags(int flags) { argument
385 displayFlags = flags;
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java349 * Return the display flags.
350 * @return the display flags.
358 * Set the display flags and call startRefresh().
359 * @param flags the display flags to be set.
361 public void setDisplayFlags(int flags) { argument
362 displayFlags = flags;
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java372 * Return the display flags.
373 * @return the display flags.
381 * Set the display flags and call startRefresh().
382 * @param flags the display flags to be set.
384 public void setDisplayFlags(int flags) { argument
385 displayFlags = flags;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java348 * Return the display flags.
349 * @return the display flags.
357 * Set the display flags and call startRefresh().
358 * @param flags the display flags to be set.
360 public void setDisplayFlags(int flags) { argument
361 displayFlags = flags;

Completed in 163 milliseconds

1234