/vbox/src/libs/xpcom18a4/python/src/ |
H A D | Pyxpt_info.cpp | 82 PyObject *ob = PyObject_FromXPTTypeDescriptor(&d->type); local 83 PyObject *ret = Py_BuildValue("bO", d->flags, ob); 84 Py_DECREF(ob);
|
H A D | PyIID.cpp | 102 Py_nsIID::IIDFromPyObject(PyObject *ob, nsIID *pRet) { argument 105 if (ob==NULL) { 109 if (PyString_Check(ob)) { 110 ok = iid.Parse(PyString_AsString(ob)); 115 } else if (ob->ob_type == &type) { 116 iid = ((Py_nsIID *)ob)->m_iid; 117 } else if (PyObject_HasAttrString(ob, "__class__")) { 119 PyObject *use_ob = PyObject_GetAttrString(ob, "_iidobj_"); 132 PyErr_Format(PyExc_TypeError, "Objects of type '%s' can not be converted to an IID", ob->ob_type->tp_name); 243 Py_nsIID::PyTypeMethod_dealloc(PyObject *ob) argument [all...] |
H A D | PyISupports.cpp | 184 Py_nsISupports::SafeRelease(Py_nsISupports *ob) argument 186 if (!ob) 188 if (ob->m_obj) 191 ob->m_obj = nsnull; 245 Py_nsISupports::InterfaceFromPyISupports(PyObject *ob, argument 251 if ( !Check(ob) ) 253 PyErr_Format(PyExc_TypeError, "Objects of type '%s' can not be used as COM objects", ob->ob_type->tp_name); 257 pis = GetI(ob, &already_iid); 294 Py_nsISupports::InterfaceFromPyObject(PyObject *ob, argument 300 if ( ob [all...] |
H A D | PyGBase.cpp | 195 PyG_Base::AutoWrapPythonInstance(PyObject *ob, const nsIID &iid, nsISupports **ppret) argument 198 NS_PRECONDITION(ob && PyObject_HasAttrString(ob, "__class__"), 214 if (CheckDefaultGateway(ob, iid, ppret)) { 221 args = Py_BuildValue("OOzi", ob, obIID, NULL, 0); 231 NS_ABORT_IF_FALSE(CheckDefaultGateway(ob, iid, &temp), "Auto-wrapped object didnt get a default gateway!"); 363 PyObject * ob = Py_nsIID::PyObjectFromIID(iid); local 369 if ( !ob || !this_interface_ob) { 370 Py_XDECREF(ob); 377 this_interface_ob, ob); [all...] |
H A D | PyXPCOM.h | 222 PYXPCOM_EXPORT PRBool PyObject_AsNSString( PyObject *ob, nsAString &aStr); 225 PYXPCOM_EXPORT nsresult PyObject_AsVariant( PyObject *ob, nsIVariant **aRet); 264 static void Py_dealloc(PyObject *ob); 265 static PyObject *Py_repr(PyObject *ob); 266 static PyObject *Py_str(PyObject *ob); 288 static PRBool Check( PyObject *ob, const nsIID &checkIID = Py_nsIID_NULL) { argument 289 Py_nsISupports *self = static_cast<Py_nsISupports *>(ob); 290 if (ob==NULL || !PyXPCOM_TypeObject::IsType(ob->ob_type )) 327 PyObject *ob, 402 IsEqual(PyObject *ob) argument [all...] |
H A D | VariantUtils.cpp | 657 static PRUint16 BestVariantTypeForPyObject( PyObject *ob, BVFTResult *pdata = NULL) argument 662 if (ob==Py_None) 664 if (ob==Py_True || ob == Py_False) 666 if (PyInt_Check(ob)) 668 if (PyLong_Check(ob)) 670 if (PyFloat_Check(ob)) 672 if (PyString_Check(ob)) 674 if (PyUnicode_Check(ob)) 676 if (PyTuple_Check(ob) || PyList_Chec 705 PyObject_AsVariant( PyObject *ob, nsIVariant **aRet) argument [all...] |
/vbox/src/VBox/Additions/linux/sharedfolders/ |
H A D | mount.vboxsf.c | 312 size_t ob = sizeof(info->name) - 1; local 324 size_t c = iconv(cd, &i, &ib, &o, &ob);
|
/vbox/src/libs/xpcom18a4/python/src/module/ |
H A D | _xpcom.cpp | 279 PyObject *ob, *obIID; local 281 if (!PyArg_ParseTuple(args, "OO|i", &ob, &obIID, &bWrapClient)) 289 nsresult r = PyXPCOM_XPTStub::CreateNew(ob, iid, getter_AddRefs(ret)); 295 AddDefaultGateway(ob, ret); // inject a weak reference to myself into the instance. 304 PyObject *ob; local 305 if (!PyArg_ParseTuple(args, "O", &ob)) 311 if (!Py_nsISupports::InterfaceFromPyObject(ob, 442 PyObject *ob; local 443 if (!PyArg_ParseTuple(args, "O:MakeVariant", &ob)) 446 nsresult nr = PyObject_AsVariant(ob, getter_AddRef 459 PyObject *ob, *obParent = NULL; local 777 PyObject *ob = PyBool_FromLong( local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/ |
H A D | ath9k_eeprom_4k.c | 791 u8 ob[5], db1[5], db2[5]; local 835 ob[0] = pModal->ob_0; 836 ob[1] = pModal->ob_1; 837 ob[2] = pModal->ob_2; 838 ob[3] = pModal->ob_3; 839 ob[4] = pModal->ob_4; 853 ob[0] = pModal->ob_0; 854 ob[1] = ob[2] = ob[ [all...] |
H A D | ar9003_eeprom.h | 220 u8 ob[AR9300_MAX_CHAINS]; member in struct:ar9300_modal_eep_header
|
H A D | eeprom.h | 354 u8 ob; member in struct:modal_eep_header
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
H A D | marshal.c | 154 w_PyLong(const PyLongObject *ob, WFILE *p) argument 160 if (Py_SIZE(ob) == 0) { 166 n = ABS(Py_SIZE(ob)); 168 d = ob->ob_digit[n-1]; 174 w_long((long)(Py_SIZE(ob) > 0 ? l : -l), p); 177 d = ob->ob_digit[i]; 184 d = ob->ob_digit[n-1]; 235 PyLongObject *ob = (PyLongObject *)v; local 236 w_PyLong(ob, p); 577 PyLongObject *ob; local [all...] |
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | sjsxp.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ... |