Home
last modified time | relevance | path

Searched refs:combo (Results 1 – 23 of 23) sorted by relevance

/external/vboot_reference/tests/
Dvb21_host_key_tests.c33 static void private_key_tests(const struct alg_combo *combo, in private_key_tests() argument
73 key->hash_alg = combo->hash_alg; in private_key_tests()
74 key->sig_alg = combo->sig_alg; in private_key_tests()
156 TEST_SUCC(vb2_private_key_hash(&ckey, combo->hash_alg), "Hash key"); in private_key_tests()
158 TEST_EQ(ckey->hash_alg, combo->hash_alg, " hash_alg"); in private_key_tests()
160 TEST_EQ(memcmp(&ckey->guid, vb2_hash_guid(combo->hash_alg), in private_key_tests()
168 static void public_key_tests(const struct alg_combo *combo, in public_key_tests() argument
186 TEST_EQ(key->sig_alg, combo->sig_alg, " sig_alg"); in public_key_tests()
190 bufsize = vb2_packed_key_size(combo->sig_alg); in public_key_tests()
216 key->hash_alg = combo->hash_alg; in public_key_tests()
[all …]
Dvb21_host_sig_tests.c39 static void sig_tests(const struct alg_combo *combo, in sig_tests() argument
64 prik->hash_alg = combo->hash_alg; in sig_tests()
65 prik->sig_alg = combo->sig_alg; in sig_tests()
70 pubk->hash_alg = combo->hash_alg; in sig_tests()
73 TEST_SUCC(vb2_private_key_hash(&prihash, combo->hash_alg), in sig_tests()
75 TEST_SUCC(vb2_public_key_hash(&pubhash, combo->hash_alg), in sig_tests()
166 static int test_algorithm(const struct alg_combo *combo, const char *keys_dir) in test_algorithm() argument
168 int rsa_bits = vb2_rsa_sig_size(combo->sig_alg) * 8; in test_algorithm()
172 printf("***Testing algorithm: %s\n", combo->name); in test_algorithm()
177 sig_tests(combo, pemfile, keybfile); in test_algorithm()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DAbstractListPropertyEditor.java87 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems() argument
89 combo.add(getTitle(i)); in addItems()
94 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem() argument
95 combo.setText(getText(property)); in selectItem()
99 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { in toPropertyEx() argument
107 toPropertyEx_simpleProperty(property, combo, index); in toPropertyEx()
127 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index) in toPropertyEx_simpleProperty() argument
DStringComboPropertyEditor.java50 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems() argument
52 combo.add(item); in addItems()
57 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem() argument
58 combo.setText(getText(property)); in selectItem()
62 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { in toPropertyEx() argument
DEnumerationValuesPropertyEditor.java107 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems() argument
109 combo.add(title); in addItems()
114 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem() argument
115 combo.setText(getText(property)); in selectItem()
119 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception { in toPropertyEx() argument
DAbstractComboPropertyEditor.java129 protected abstract void addItems(Property property, CCombo3 combo) throws Exception; in addItems() argument
134 protected abstract void selectItem(Property property, CCombo3 combo) throws Exception; in selectItem() argument
139 protected abstract void toPropertyEx(Property property, CCombo3 combo, int index) in toPropertyEx() argument
DAbstractComboBoxPropertyEditor.java144 protected abstract void addItems(Property property, CComboBox combo) throws Exception; in addItems() argument
149 protected void selectItem(Property property, CComboBox combo) throws Exception { in selectItem() argument
155 protected abstract void toPropertyEx(Property property, CComboBox combo) throws Exception; in toPropertyEx() argument
DStringListPropertyEditor.java32 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index) in toPropertyEx_simpleProperty() argument
/external/fio/
Dgoptions.c26 GtkWidget *combo; member
48 GtkWidget *combo; member
273 index = gtk_combo_box_get_active(GTK_COMBO_BOX(c->combo)); in gopt_combo_changed()
301 c->combo = gtk_combo_box_text_new(); in __gopt_new_combo()
303 g_signal_connect(G_OBJECT(c->combo), "destroy", G_CALLBACK(gopt_combo_destroy), c); in __gopt_new_combo()
305 gtk_box_pack_start(GTK_BOX(c->gopt.box), c->combo, FALSE, FALSE, 0); in __gopt_new_combo()
321 gtk_combo_box_set_active(GTK_COMBO_BOX(c->combo), i); in gopt_combo_str_set_val()
342 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(c->combo), vp->ival); in gopt_new_combo_str()
349 gtk_combo_box_set_active(GTK_COMBO_BOX(c->combo), active); in gopt_new_combo_str()
352 …c->gopt.sig_handler = g_signal_connect(G_OBJECT(c->combo), "changed", G_CALLBACK(gopt_combo_change… in gopt_new_combo_str()
[all …]
Dgfio.c493 GtkWidget *combo; member
509 ctext = gtk_combo_box_text_get_active_text(GTK_COMBO_BOX_TEXT(cw->combo)); in hostname_cb()
577 cw.combo = gtk_combo_box_text_new(); in get_connection_details()
578 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(cw.combo), "IPv4"); in get_connection_details()
579 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(cw.combo), "IPv6"); in get_connection_details()
580 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(cw.combo), "local socket"); in get_connection_details()
581 gtk_combo_box_set_active(GTK_COMBO_BOX(cw.combo), 0); in get_connection_details()
583 gtk_container_add(GTK_CONTAINER(hbox), cw.combo); in get_connection_details()
602 g_signal_connect(G_OBJECT(cw.combo), "changed", G_CALLBACK(hostname_cb), &cw); in get_connection_details()
614 typeentry = gtk_combo_box_text_get_active_text(GTK_COMBO_BOX_TEXT(cw.combo)); in get_connection_details()
/external/llvm/utils/TableGen/
DDFAPacketizerEmitter.cpp391 unsigned combo = ComboBitToBitsMap[resourceMask]; in AddInsnClassStages() local
392 if (combo && ((~prevState & combo) != combo)) { in AddInsnClassStages()
395 << " (0x" << utohexstr(combo) <<") cannot be scheduled\n"); in AddInsnClassStages()
402 unsigned ResultingResourceState = prevState | resourceMask | combo; in AddInsnClassStages()
407 if (combo) in AddInsnClassStages()
408 dbgs() << " | 0x" << utohexstr(combo); in AddInsnClassStages()
491 unsigned combo = ComboBitToBitsMap[InsnClass[i]]; in canMaybeAddInsnClass() local
492 if (combo && ((~resources & combo) != combo)) { in canMaybeAddInsnClass()
495 << " (0x" << utohexstr(combo) <<") cannot be scheduled\n"); in canMaybeAddInsnClass()
/external/selinux/policycoreutils/gui/
DstatusPage.py144 def enabled_changed(self, combo): argument
145 enabled = combo.get_active()
150 combo.set_active(self.enabled)
155 combo.set_active(self.enabled)
/external/lzma/CPP/7zip/UI/GUI/
DExtractDialog.cpp97 void AddComboItems(NControl::CComboBox &combo, const UInt32 *langIDs, unsigned numItems, const int … in AddComboItems() argument
104 int index = (int)combo.AddString(s); in AddComboItems()
105 combo.SetItemData(index, i); in AddComboItems()
109 combo.SetCurSel(curSel); in AddComboItems()
/external/fonttools/Lib/fontTools/ttLib/tables/
D_m_a_x_p.py119 for combo in items:
120 print(" %s: %s" % combo)
/external/libpng/contrib/libtests/
Dpngimage.c289 int combo = known_bad_combos[i][0]; in is_bad_combo() local
291 if ((combo & transforms) == combo && in is_bad_combo()
1495 goto combo; in test_one_file()
1515 goto combo; in test_one_file()
1521 combo: in test_one_file()
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
DTestCaseEditController.java364 private JComboBox combo; field in TestCaseEditController.AbstractEditorPane
370 this.combo = comboBox; in AbstractEditorPane()
380 this.add(combo, BorderLayout.NORTH); in initComponents()
/external/mksh/
DMakefrag.inc13 … /huge-ssd/aosp-arm64/build/core/combo/include/arch/linux-arm64/AndroidConfig.h -I/huge-ssd/aosp-a…
/external/curl/docs/
DINSTALL.cmake87 1. Fill in the "Where is the source code" combo box with the path to
89 2. Fill in the "Where to build the binaries" combo box with the path
/external/llvm/include/llvm/Target/
DTargetItinerary.td139 // Combo Function Unit data - This is a map of combo function unit names to
148 // Combo Function Units - This is a list of all combo function unit data.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
DPerformanceResultsPreferencePage.java120 CCombo combo= new CCombo(parent, SWT.BORDER); in createCombo() local
121 combo.addModifyListener(this); in createCombo()
128 combo.setLayoutData(data); in createCombo()
129 return combo; in createCombo()
/external/selinux/policycoreutils/sepolicy/sepolicy/
Dgui.py1748 def login_seuser_combobox_change(self, combo, *args): argument
1749 seuser = self.combo_get_active_text(combo)
1755 def user_roles_combobox_change(self, combo, *args): argument
1756 serole = self.combo_get_active_text(combo)
/external/curl/
DCHANGES.09609 combo does on unixes.
9841 CRLF combo properly.
12202 curl_multi_fdset() first was not really a working combo. I added an internal
/external/llvm/lib/Target/X86/
DX86InstrSSE.td3210 // Repeat everything for AVX, except for the movss + scalar combo...