| /minix3/minix/lib/liblwip/dist/src/apps/snmp/ |
| H A D | snmp_table.c | 46 …p_table_get_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance) in snmp_table_get_instance() argument 49 …const struct snmp_table_node* table_node = (const struct snmp_table_node*)(const void*)instance->n… in snmp_table_get_instance() 56 if ((instance->instance_oid.len >= 3) && (instance->instance_oid.id[0] == 1)) { in snmp_table_get_instance() 61 if (col_def->index == instance->instance_oid.id[1]) { in snmp_table_get_instance() 71 instance->asn1_type = col_def->asn1_type; in snmp_table_get_instance() 72 instance->access = col_def->access; in snmp_table_get_instance() 73 instance->get_value = table_node->get_value; in snmp_table_get_instance() 74 instance->set_test = table_node->set_test; in snmp_table_get_instance() 75 instance->set_value = table_node->set_value; in snmp_table_get_instance() 78 &(instance->instance_oid.id[1]), in snmp_table_get_instance() [all …]
|
| H A D | snmp_scalar.c | 45 static s16_t snmp_scalar_array_get_value(struct snmp_node_instance* instance, void* value); 46 static snmp_err_t snmp_scalar_array_set_test(struct snmp_node_instance* instance, u16_t value_len,… 47 static snmp_err_t snmp_scalar_array_set_value(struct snmp_node_instance* instance, u16_t value_len… 50 …_scalar_get_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance) in snmp_scalar_get_instance() argument 52 …struct snmp_scalar_node* scalar_node = (const struct snmp_scalar_node*)(const void*)instance->node; in snmp_scalar_get_instance() 58 if ((instance->instance_oid.len != 1) || (instance->instance_oid.id[0] != 0)) { in snmp_scalar_get_instance() 62 instance->access = scalar_node->access; in snmp_scalar_get_instance() 63 instance->asn1_type = scalar_node->asn1_type; in snmp_scalar_get_instance() 64 instance->get_value = scalar_node->get_value; in snmp_scalar_get_instance() 65 instance->set_test = scalar_node->set_test; in snmp_scalar_get_instance() [all …]
|
| H A D | snmp_threadsync.c | 47 sys_mutex_lock(&call_data->threadsync_node->instance->sem_usage_mutex); in call_synced_function() 48 call_data->threadsync_node->instance->sync_fn(fn, call_data); in call_synced_function() 49 sys_sem_wait(&call_data->threadsync_node->instance->sem); in call_synced_function() 50 sys_mutex_unlock(&call_data->threadsync_node->instance->sem_usage_mutex); in call_synced_function() 60 sys_sem_signal(&call_data->threadsync_node->instance->sem); in threadsync_get_value_synced() 64 threadsync_get_value(struct snmp_node_instance* instance, void* value) in threadsync_get_value() argument 66 struct threadsync_data *call_data = (struct threadsync_data*)instance->reference.ptr; in threadsync_get_value() 81 sys_sem_signal(&call_data->threadsync_node->instance->sem); in threadsync_set_test_synced() 85 threadsync_set_test(struct snmp_node_instance* instance, u16_t len, void *value) in threadsync_set_test() argument 87 struct threadsync_data *call_data = (struct threadsync_data*)instance->reference.ptr; in threadsync_set_test() [all …]
|
| H A D | snmp_mib2_interfaces.c | 62 interfaces_get_value(struct snmp_node_instance* instance, void* value) in interfaces_get_value() argument 64 if (instance->node->oid == 1) { in interfaces_get_value() 157 interfaces_Table_get_value(struct snmp_node_instance* instance, void* value) in interfaces_Table_get_value() argument 159 struct netif *netif = (struct netif*)instance->reference.ptr; in interfaces_Table_get_value() 164 switch (SNMP_TABLE_GET_COLUMN_FROM_OID(instance->instance_oid.id)) in interfaces_Table_get_value() 277 interfaces_Table_set_test(struct snmp_node_instance* instance, u16_t len, void *value) in interfaces_Table_set_test() argument 283 LWIP_ASSERT("Invalid column", (SNMP_TABLE_GET_COLUMN_FROM_OID(instance->instance_oid.id) == 7)); in interfaces_Table_set_test() 294 interfaces_Table_set_value(struct snmp_node_instance* instance, u16_t len, void *value) in interfaces_Table_set_value() argument 296 struct netif *netif = (struct netif*)instance->reference.ptr; in interfaces_Table_set_value() 301 LWIP_ASSERT("Invalid column", (SNMP_TABLE_GET_COLUMN_FROM_OID(instance->instance_oid.id) == 7)); in interfaces_Table_set_value()
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/ |
| H A D | microsoft-abi-methods.cpp | 17 C instance; in call_simple_method() local 19 instance.simple_method(); in call_simple_method() 30 C instance; in call_cdecl_method() local 31 instance.cdecl_method(); in call_cdecl_method() 42 C instance; in call_vararg_method() local 43 instance.vararg_method("Hello"); in call_vararg_method()
|
| H A D | static-init-3.cpp | 9 static T & instance; member 14 use(instance); in get() 21 template<class T> T & X1<T>::instance = X1<T>::get(); member in X1<T>
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
| H A D | ivar-lookup.m | 46 return a + b; // expected-error{{instance variable 'a' accessed in class method}} \ 47 // expected-error{{instance variable 'b' accessed in class method}} 60 int IVAR; // expected-error {{instance variable is already declared}} 67 int IVAR; // expected-error {{instance variable is already declared}} 73 int IVAR; // expected-error {{instance variable is already declared}} 74 int PIVAR; // expected-error {{instance variable is already declared}} 80 int IVAR; // expected-error {{instance variable is already declared}} 146 // expected-error {{instance variable is already declared}} 151 int d; // expected-error {{instance variable is already declared}} 152 NSString *e_strong; // expected-error {{instance variable is already declared}} [all …]
|
| H A D | ivar-access-tests.m | 33 access = s->private; // expected-error {{instance variable 'private' is private}} 36 access = m->private; // expected-error {{instance variable 'private' is private}} 49 access = s->private; // expected-error {{instance variable 'private' is private}} 52 access = m->private; // expected-error {{instance variable 'private' is private}} 64 access = s->private; // expected-error {{instance variable 'private' is private}} 65 access = s->protected; // expected-error {{instance variable 'protected' is protected}} 67 access = m->private; // expected-error {{instance variable 'private' is private}} 68 access = m->protected; // expected-error {{instance variable 'protected' is protected}} 76 access = s->private; // expected-error {{instance variable 'private' is private}} 77 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
|
| H A D | warn-direct-ivar-access.m | 7 …id _isTickledPink; // expected-error {{existing instance variable '_isTickledPink' for property 'i… 22 …_myMaster = _isTickledPink; // expected-warning {{instance variable '_myMaster' is being directly … 23 // expected-warning {{instance variable '_isTickledPink' is being directly accessed}} 37 …p->_isTickledPink = (*p)._myMaster; // expected-warning {{instance variable '_isTickledPink' is be… 38 // expected-warning {{instance variable '_myMaster' is being directly accessed}} 39 …if (p->_myIntProp) // expected-warning {{instance variable '_myIntProp' is being directly accessed… 40 …p->_myIntProp = 0; // expected-warning {{instance variable '_myIntProp' is being directly accessed… 41 …return p->_isTickledPink; // expected-warning {{instance variable '_isTickledPink' is being direct… 74 - (id) property_in_protocol { return _property_in_protocol; } // expected-warning {{instance variab…
|
| H A D | method-not-defined.m | 3 @interface Foo // expected-note {{receiver is instance of class declared here}} 10 … '+alloc' not found (return type defaults to 'id')}} expected-warning {{instance method '-init' no… 11 …[fooObj notdefined]; // expected-warning {{instance method '-notdefined' not found (return type de… 12 …[obj whatever:1 :2 :3]; // expected-warning {{instance method '-whatever:::' not found (return typ…
|
| H A D | objc-container-subscripting-1.m | 14 id oldObject = array[10]; // expected-warning {{instance method '-objectAtIndexedSubscript:' not fo… 16 array[10] = 0; // expected-warning {{instance method '-setObject:atIndexedSubscript:' not found (re… 19 oldObject = p_array[10]; // expected-warning {{instance method '-objectAtIndexedSubscript:' not fou… 21 p_array[10] = 0; // expected-warning {{instance method '-setObject:atIndexedSubscript:' not found (…
|
| H A D | default-synthesize-2.m | 44 id uid; // expected-note {{instance variable is declared here}} 50 …{autosynthesized property 'uid' will use synthesized instance variable '_uid', not existing instan… 54 uid = 0; // Use of the wrong instance variable 55 _uid = 0; // Use of the property instance variable 122 id y; // expected-note {{instance variable is declared here}} 128 …cted-warning {{autosynthesized property 'y' will use instance variable '_y', not existing instanc…
|
| H A D | property-ivar-mismatch.m | 6 char ivar; // expected-note{{instance variable is declared here}} 12 …expected-error {{type of property 'prop' ('int') does not match type of instance variable 'ivar' (… 18 void * _P; // expected-note {{instance variable is declared here}} 24 @synthesize P=_P; // expected-error {{ype of property 'P' ('int') does not match type of instance v…
|
| /minix3/external/bsd/llvm/dist/clang/test/Index/skip-parsed-bodies/ |
| H A D | compile_commands.json | 23 // CHECK: [indexDeclaration]: kind: c++-instance-method | name: method_decl | {{.*}} | isRedec… 24 // CHECK-NEXT: [indexDeclaration]: kind: c++-instance-method | name: method_def1 | {{.*}} | isRedec… 26 // CHECK-NEXT: [indexDeclaration]: kind: c++-instance-method | name: method_def2 | {{.*}} | isRedec… 27 // CHECK-NEXT: [indexDeclaration]: kind: c++-instance-method | name: method_def2 | {{.*}} | isRedec… 38 // CHECK: [indexDeclaration]: kind: c++-instance-method | name: method_decl | {{.*}} | isRedec… 39 // CHECK-NEXT: [indexDeclaration]: kind: c++-instance-method | name: method_def1 | {{.*}} | isRedec… 40 // CHECK-NEXT: [indexDeclaration]: kind: c++-instance-method | name: method_def2 | {{.*}} | isRedec… 41 // CHECK-NEXT: [indexDeclaration]: kind: c++-instance-method | name: method_def2 | {{.*}} | isConta… 48 // CHECK: [indexDeclaration]: kind: c++-instance-method | name: tsmeth | {{.*}} | isRedecl: 0 … 57 // CHECK: [indexDeclaration]: kind: c++-instance-method | name: method_decl | {{.*}} | isRedec… [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/ASTMerge/ |
| H A D | category.m | 5 // CHECK: category2.m:18:1: error: instance method 'method2' has incompatible result types in diffe… 6 // CHECK: category1.m:16:1: note: instance method 'method2' also declared here 7 // CHECK: category2.m:26:1: error: instance method 'method3' has incompatible result types in diffe… 8 // CHECK: category1.m:24:1: note: instance method 'method3' also declared here 9 // CHECK: category2.m:48:1: error: instance method 'blah' has incompatible result types in differen… 10 // CHECK: category1.m:46:1: note: instance method 'blah' also declared here
|
| /minix3/minix/lib/liblwip/dist/src/include/lwip/apps/ |
| H A D | snmp_table.h | 75 …_table_get_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance); 76 …e_get_next_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance); 115 …simple_get_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance); 116 …e_get_next_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance); 124 s16_t snmp_table_extract_value_from_s32ref(struct snmp_node_instance* instance, void* value); 125 s16_t snmp_table_extract_value_from_u32ref(struct snmp_node_instance* instance, void* value); 126 s16_t snmp_table_extract_value_from_refconstptr(struct snmp_node_instance* instance, void* value);
|
| H A D | snmp_threadsync.h | 91 struct snmp_threadsync_instance *instance; member 94 …adsync_get_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance); 95 …c_get_next_instance(const u32_t *root_oid, u8_t root_oid_len, struct snmp_node_instance* instance); 106 void snmp_threadsync_init(struct snmp_threadsync_instance *instance, snmp_threadsync_synchronizer_f…
|
| /minix3/external/bsd/llvm/dist/clang/test/Analysis/ |
| H A D | superclass.m | 81 } // expected-warning {{The 'addChildViewController:' instance method in UIViewController subclass … 82 - (void)viewDidAppear:(BOOL)animated {} // expected-warning {{The 'viewDidAppear:' instance method … 83 - (void)viewDidDisappear:(BOOL)animated {} // expected-warning {{The 'viewDidDisappear:' instance m… 84 - (void)viewDidUnload {} // expected-warning {{The 'viewDidUnload' instance method in UIViewControl… 85 - (void)viewDidLoad {} // expected-warning {{The 'viewDidLoad' instance method in UIViewController … 86 - (void)viewWillUnload {} // expected-warning {{The 'viewWillUnload' instance method in UIViewContr… 87 - (void)viewWillAppear:(BOOL)animated {} // expected-warning {{The 'viewWillAppear:' instance metho… 88 - (void)viewWillDisappear:(BOOL)animated {} // expected-warning {{The 'viewWillDisappear:' instance… 89 - (void)didReceiveMemoryWarning {} // expected-warning {{The 'didReceiveMemoryWarning' instance met… 90 …ontroller {} // expected-warning {{The 'removeFromParentViewController' instance method in UIViewC… [all …]
|
| /minix3/external/bsd/libc++/dist/libcxx/test/std/containers/sequences/deque/deque.modifiers/ |
| H A D | push_back_exception_safety.pass.cpp | 69 CMyClass instance(42); in main() local 73 vec.push_back(instance); in main() 78 vec.push_back(instance); in main() 94 vec.push_back(instance); in main()
|
| H A D | push_front_exception_safety.pass.cpp | 69 CMyClass instance(42); in main() local 73 vec.push_front(instance); in main() 78 vec.push_front(instance); in main() 94 vec.push_front(instance); in main()
|
| /minix3/external/bsd/llvm/dist/clang/test/Index/ |
| H A D | index-decls.m | 54 // CHECK: [indexDeclaration]: kind: objc-instance-method | name: prop | {{.*}} | loc: 3:2 57 // CHECK: [indexDeclaration]: kind: objc-instance-method | name: setProp: | {{.*}} | loc: 7:33 61 // CHECK: [indexDeclaration]: kind: objc-instance-method | name: prop | {{.*}} | loc: 11:13 | {{.*}… 62 // CHECK: [indexDeclaration]: kind: objc-instance-method | name: setProp: | {{.*}} | loc: 11:13 | {… 74 // CHECK-NOT: [indexDeclaration]: kind: objc-instance-method {{.*}} loc: 37: 75 // CHECK-NOT: [indexDeclaration]: kind: objc-instance-method {{.*}} loc: 43:
|
| /minix3/external/bsd/libc++/dist/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/ |
| H A D | push_front_exception_safety.pass.cpp | 62 CMyClass instance; in main() local 65 vec.push_front(instance); in main() 69 vec.push_front(instance); in main()
|
| /minix3/external/bsd/libc++/dist/libcxx/test/std/containers/sequences/list/list.modifiers/ |
| H A D | push_front_exception_safety.pass.cpp | 62 CMyClass instance; in main() local 65 vec.push_front(instance); in main() 69 vec.push_front(instance); in main()
|
| H A D | push_back_exception_safety.pass.cpp | 62 CMyClass instance; in main() local 65 vec.push_back(instance); in main() 69 vec.push_back(instance); in main()
|
| /minix3/external/bsd/libc++/dist/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/ |
| H A D | push_front_exception_safety.pass.cpp | 62 CMyClass instance; in main() local 65 vec.push_front(instance); in main() 69 vec.push_front(instance); in main()
|