HomeSort by: relevance | last modified time | path
    Searched refs:selector (Results 1 - 25 of 255) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-objc-gnustep/
main.m 22 SEL action = @selector(method:);
32 action: @selector(showHelloWindow:)
41 action: @selector(hide:)
44 action: @selector(terminate:)
49 action: @selector(showInfoPanel:)
52 action: @selector(showPrefPanel:)
61 action: @selector(cut:)
64 action: @selector(copy:)
67 action: @selector(paste:)
70 action: @selector(delete:
    [all...]
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
tlsa_52.h 25 uint8_t selector; member in struct:dns_rdata_tlsa
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
tlsa_52.h 26 uint8_t selector; member in struct:dns_rdata_tlsa
  /src/external/gpl3/gcc/dist/libgfortran/runtime/
select_inc.c 40 const CHARTYPE *selector,
45 /* select_string()-- Given a selector string and a table of
49 select_string (select_struct *table, int table_len, const CHARTYPE *selector,
76 selector_len, selector) >= 0)
89 if (compare_string (t->low_len, t->low, selector_len, selector) <= 0)
108 i = compare_string (t->low_len, t->low, selector_len, selector);
129 if (compare_string (selector_len, selector, t->high_len, t->high) <= 0)
  /src/external/gpl3/gcc.old/dist/libgfortran/runtime/
select_inc.c 40 const CHARTYPE *selector,
45 /* select_string()-- Given a selector string and a table of
49 select_string (select_struct *table, int table_len, const CHARTYPE *selector,
76 selector_len, selector) >= 0)
89 if (compare_string (t->low_len, t->low, selector_len, selector) <= 0)
108 i = compare_string (t->low_len, t->low, selector_len, selector);
129 if (compare_string (selector_len, selector, t->high_len, t->high) <= 0)
  /src/tests/usr.bin/xlint/lint1/
d_c99_bool.c 62 convert_to_bool(int selector)
77 switch (selector) {
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
attribute.d 69 * Use this attribute to attach an Objective-C selector to a method.
96 * this() @selector("init");
97 * static NSObject alloc() @selector("alloc");
98 * NSObject initWithUTF8String(in char* str) @selector("initWithUTF8String:");
100 * @selector("copyScriptingValue:forKey:withProperties:");
104 version (UdaSelector) struct selector
106 string selector;
129 * import core.attribute : optional, selector;
140 * bool respondsToSelector(SEL sel) @selector("respondsToSelector:");
145 * @optional void foo() @selector("foo")
    [all...]
  /src/crypto/external/apache2/openssl/dist/fuzz/
slh-dsa.c 95 * This function maps a selector value to a specific SLH-DSA algorithm
100 * @param selector A random selector value used to determine the key type.
107 static const char *select_keytype(uint8_t selector, uint32_t *keysize)
115 * So use our random selector value to get one of them by computing
119 choice = (selector % 12) + 1460;
155 * @brief Generates two SLH-DSA key pairs based on consumed selector values.
157 * This function extracts two selector values from the provided buffer,
161 * @param buf Pointer to a buffer containing selector values. The buffer
171 uint8_t selector = 0 local
208 uint8_t selector = 0; local
314 uint8_t selector = 0; local
    [all...]
  /src/external/bsd/wpa/dist/src/ap/
wpa_auth_ie.c 624 u32 selector; local
665 selector = RSN_AUTH_KEY_MGMT_UNSPEC_802_1X;
669 selector = RSN_AUTH_KEY_MGMT_802_1X_SUITE_B_192;
671 selector = RSN_AUTH_KEY_MGMT_802_1X_SUITE_B;
675 selector = RSN_AUTH_KEY_MGMT_FT_FILS_SHA384;
677 selector = RSN_AUTH_KEY_MGMT_FT_FILS_SHA256;
680 selector = RSN_AUTH_KEY_MGMT_FILS_SHA384;
682 selector = RSN_AUTH_KEY_MGMT_FILS_SHA256;
687 selector = RSN_AUTH_KEY_MGMT_FT_802_1X_SHA384;
690 selector = RSN_AUTH_KEY_MGMT_FT_802_1X
1221 u32 cipher, suite, selector, mask; local
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/
sendmsg.c 43 #include "objc-private/selector.h" /* For sel_is_mapped() */
76 return type for the selector.
97 /* Given a selector, return the proper forwarding implementation. */
143 meta-class), and 'sel' is the selector that we are trying to
182 'sel' is the selector that we are trying to resolve. This must be
229 /* Given a CLASS and selector, return the implementation corresponding
230 to the method of the selector.
338 class_getMethodImplementation (Class class_, SEL selector)
340 if (class_ == Nil || selector == NULL)
344 return get_imp (class_, selector);
    [all...]
thr.c 87 SEL selector; member in struct:__objc_thread_start_state
99 SEL selector = istate->selector; local
120 if ((imp = (id (*) (id, SEL, id))objc_msg_lookup (object, selector)))
121 (*imp) (object, selector, argument);
125 _objc_abort ("objc_thread_detach called with bad selector.\n");
147 if fails. Thread is started by sending message with selector to
150 objc_thread_detach (SEL selector, id object, id argument)
161 istate->selector = selector;
    [all...]
selector.c 1 /* GNU Objective C Runtime selector related functions
33 #include "objc-private/selector.h"
36 /* Initial selector hash table size. Value doesn't matter much. */
39 /* Tables mapping selector names to uid and opposite. */
66 final selector id after they are registered. */
254 /* Return selector representing name. */
289 /* Look for a typed selector. */
304 /* First typed selector that we find. Keep it in
338 /* No typed selector found. Return NULL. */
399 /* Get the name of a selector. If the selector is unknown, the empt
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/
sendmsg.c 43 #include "objc-private/selector.h" /* For sel_is_mapped() */
76 return type for the selector.
97 /* Given a selector, return the proper forwarding implementation. */
143 meta-class), and 'sel' is the selector that we are trying to
182 'sel' is the selector that we are trying to resolve. This must be
229 /* Given a CLASS and selector, return the implementation corresponding
230 to the method of the selector.
338 class_getMethodImplementation (Class class_, SEL selector)
340 if (class_ == Nil || selector == NULL)
344 return get_imp (class_, selector);
    [all...]
thr.c 87 SEL selector; member in struct:__objc_thread_start_state
99 SEL selector = istate->selector; local
120 if ((imp = (id (*) (id, SEL, id))objc_msg_lookup (object, selector)))
121 (*imp) (object, selector, argument);
125 _objc_abort ("objc_thread_detach called with bad selector.\n");
147 if fails. Thread is started by sending message with selector to
150 objc_thread_detach (SEL selector, id object, id argument)
161 istate->selector = selector;
    [all...]
selector.c 1 /* GNU Objective C Runtime selector related functions
33 #include "objc-private/selector.h"
36 /* Initial selector hash table size. Value doesn't matter much. */
39 /* Tables mapping selector names to uid and opposite. */
66 final selector id after they are registered. */
254 /* Return selector representing name. */
289 /* Look for a typed selector. */
304 /* First typed selector that we find. Keep it in
338 /* No typed selector found. Return NULL. */
399 /* Get the name of a selector. If the selector is unknown, the empt
    [all...]
  /src/sys/dev/nvmm/x86/
nvmm_x86.c 56 .selector = 0x0000,
66 .selector = 0xF000,
76 .selector = 0x0000,
86 .selector = 0x0000,
96 .selector = 0x0000,
106 .selector = 0x0000,
116 .selector = 0x0000,
126 .selector = 0x0000,
136 .selector = 0x0000,
146 .selector = 0x0000
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/objc/
runtime.h 79 SEL name; /* Selector (name and signature) */
162 /** Implementation: the following functions are in selector.c. */
164 /* Return the name of a given selector. If 'selector' is NULL, return
165 "<null selector>". */
166 objc_EXPORT const char *sel_getName (SEL selector);
168 /* Return the type of a given selector. Return NULL if selector is
174 objc_EXPORT const char *sel_getTypeEncoding (SEL selector);
180 /* Register a selector with a given name (but unspecified types). I
    [all...]
thr.h 83 objc_thread_t objc_thread_detach (SEL selector, id object, id argument);
  /src/external/gpl3/gcc.old/dist/libobjc/objc/
runtime.h 79 SEL name; /* Selector (name and signature) */
162 /** Implementation: the following functions are in selector.c. */
164 /* Return the name of a given selector. If 'selector' is NULL, return
165 "<null selector>". */
166 objc_EXPORT const char *sel_getName (SEL selector);
168 /* Return the type of a given selector. Return NULL if selector is
174 objc_EXPORT const char *sel_getTypeEncoding (SEL selector);
180 /* Register a selector with a given name (but unspecified types). I
    [all...]
thr.h 83 objc_thread_t objc_thread_detach (SEL selector, id object, id argument);
  /src/external/mpl/bind/dist/bin/tests/system/doth/
tests_gnutls.py 80 selector = selectors.DefaultSelector()
81 selector.register(gnutls_cli.stdout, selectors.EVENT_READ)
86 if not selector.select(timeout=deadline - time.monotonic()):
  /src/sys/sys/
select.h 54 void selrecord(struct lwp *selector, struct selinfo *);
  /src/external/ibm-public/postfix/dist/src/dns/
dns_strrecord.c 93 uint8_t selector = *ip++; local
98 vstring_sprintf_append(buf, "%d %d %d ", usage, selector, mtype);
  /src/external/ibm-public/postfix/dist/src/tls/
tls_dane.c 34 /* TLS_TLSA *tlsa_prepend(tlsa, usage, selector, mtype, data, len)
37 /* uint8_t selector;
143 /* .IP selector
144 /* DANE TLSA selector field.
330 TLS_TLSA *tlsa_prepend(TLS_TLSA *tlsa, uint8_t usage, uint8_t selector,
338 head->selector = selector;
509 uint8_t selector; local
530 selector = *ip++;
544 usage, selector, mtype, data, dlen)
764 uint8_t selector = DNS_TLSA_SELECTOR_FULL_CERTIFICATE; local
774 uint8_t selector = DNS_TLSA_SELECTOR_SUBJECTPUBLICKEYINFO; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
tasn_utl.c 26 * Given an ASN1_ITEM CHOICE type return the selector value
45 * Given an ASN1_ITEM CHOICE type set the selector value, return old value.
220 * Handle ANY DEFINED BY template, find the selector, look up the relevant
230 long selector; local
240 /* Get the selector field */
255 selector = OBJ_obj2nid((ASN1_OBJECT *)*sfld);
257 selector = ASN1_INTEGER_get((ASN1_INTEGER *)*sfld);
260 if (adb->adb_cb != NULL && adb->adb_cb(&selector) == 0) {
273 if (atbl->value == selector)

Completed in 75 milliseconds

1 2 3 4 5 6 7 8 91011