Lines Matching refs:res

342 	HRESULT res;  in CPH_METHOD()  local
348 res = get_persist_file(helper); in CPH_METHOD()
350 res = IPersistFile_GetCurFile(helper->ipf, &olename); in CPH_METHOD()
352 if (res == S_OK) { in CPH_METHOD()
358 } else if (res == S_FALSE) { in CPH_METHOD()
362 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
364 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
374 HRESULT res; in CPH_METHOD() local
383 res = get_persist_file(helper); in CPH_METHOD()
409 res = IPersistFile_Save(helper->ipf, olefilename, remember); in CPH_METHOD()
410 if (SUCCEEDED(res)) { in CPH_METHOD()
412 res = IPersistFile_GetCurFile(helper->ipf, &olefilename); in CPH_METHOD()
413 if (S_OK == res) { in CPH_METHOD()
427 if (FAILED(res)) { in CPH_METHOD()
428 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
432 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
441 HRESULT res; in CPH_METHOD() local
450 res = get_persist_file(helper); in CPH_METHOD()
476 res = IPersistFile_Load(helper->ipf, olefilename, flags); in CPH_METHOD()
479 if (FAILED(res)) { in CPH_METHOD()
480 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
484 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
493 HRESULT res; in CPH_METHOD() local
499 res = get_persist_stream_init(helper); in CPH_METHOD()
501 res = IPersistStreamInit_GetSizeMax(helper->ipsi, &size); in CPH_METHOD()
503 res = get_persist_stream(helper); in CPH_METHOD()
505 res = IPersistStream_GetSizeMax(helper->ips, &size); in CPH_METHOD()
507 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
512 if (res != S_OK) { in CPH_METHOD()
513 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
525 HRESULT res; in CPH_METHOD() local
530 res = get_persist_stream_init(helper); in CPH_METHOD()
532 res = IPersistStreamInit_InitNew(helper->ipsi); in CPH_METHOD()
534 if (res != S_OK) { in CPH_METHOD()
535 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
540 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
552 HRESULT res; in CPH_METHOD() local
573 res = S_OK; in CPH_METHOD()
580 res = OleLoadFromStream(stm, &IID_IDispatch, &disp); in CPH_METHOD()
582 if (SUCCEEDED(res)) { in CPH_METHOD()
586 res = get_persist_stream_init(helper); in CPH_METHOD()
588 res = IPersistStreamInit_Load(helper->ipsi, stm); in CPH_METHOD()
590 res = get_persist_stream(helper); in CPH_METHOD()
592 res = IPersistStreamInit_Load(helper->ipsi, stm); in CPH_METHOD()
598 if (FAILED(res)) { in CPH_METHOD()
599 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()
612 HRESULT res; in CPH_METHOD() local
635 res = get_persist_stream_init(helper); in CPH_METHOD()
637 res = IPersistStreamInit_Save(helper->ipsi, stm, TRUE); in CPH_METHOD()
639 res = get_persist_stream(helper); in CPH_METHOD()
641 res = IPersistStream_Save(helper->ips, stm, TRUE); in CPH_METHOD()
647 if (FAILED(res)) { in CPH_METHOD()
648 php_com_throw_exception(res, NULL TSRMLS_CC); in CPH_METHOD()